TatriX

Results 106 comments of TatriX

Another thing: ideally I would like to have something like vue-devtools: ![](https://raw.githubusercontent.com/vuejs/vue-devtools/dev/media/screenshot-shadow.png) So I can inspect state and messages in runtime.

The simplest test case: ```js var foo = { bar: 42, }; foo.bar; // jump to bar ```

Yes, my bad. Please try this: ```js var foo = { bar: 42, }; function Foo() { this.bar = 42; } foo.bar; // jump to bar; ```

I think one should check if `(car names)` of the `(js2-search-scope)` call is `this` and instead of `js2-get-symbol-declaration` use something to find a function/class declaration. What do you think?

Hm, I can do `(setq-local rustic-cargo-bin "wasm-pack")`

Right now I'm using the following code: ```el (define-key rustic-mode-map [remap rustic-cargo-check] (lambda () (interactive) (if rustic-wasm-p (rustic-run-cargo-command "cargo check --target wasm32-unknown-unknown") (rustic-cargo-check)))) (define-key rustic-mode-map [remap rustic-cargo-run] (lambda () (interactive)...

When I'm trying to load `slite.el` I'm getting an error: ``` add-hook: Symbol’s function definition is void: case ``` from this code I think: ``` (add-hook (case (slite--slime-impl) (:sly 'sly-compilation-finished-hook)...

I think this is due `cl` lib being deprecated since Emacs 27 and probably it is remove in Emacs 28. Most likely you want to `(require 'cl-lib)` and use `(cl-case...

Nice! Now I do ``` (asdf:load-system :slite/parachute) ;; C-c v (parachute:test :foo) ``` and getting: ``` Waiting for test results... [sly] `sly-eval-async' errored: (void-function every) ```

`define-test` name can be a symbol or a string: `(define-test "A more descriptive name, perhaps")` It seems this insn't handled right now: ``` The value "registered user should be able...