flowistry
flowistry copied to clipboard
Flowistry is an IDE plugin for Rust that helps you focus on relevant code.
If you use Flowistry and it highlights something unexpectedly -- either it misses something you expect to be highlighted, or it highlights something that seems irrelevant -- please post a...
If you have a .rs file that's not reachable/compiled for the target flowistry uses (I assume the host?), flowistry opens a window with this error message in vscode: ``` Flowistry...
When trying to use flowistry for the first time, I get this error message: ```rust Flowistry could not run because your project failed to build with error: error: failed to...
You mentioned two things during your thesis defense: 1. There are two analyses that flowistry supports: whole-program analysis, and (very accurate) heuristics using the lifetime annotations people already provide for...
# Features * Windows support * [x] Fix span bugs? is this related to unicode? document.offsetAt seems character based and not byte-based * [x] Add windows target to release builds...
# Problem I followed the ["rustup fails on installation" instructions](https://github.com/willcrichton/flowistry/blob/master/README.md#rustup-fails-on-installation) the clicked continue in VS Code. # Logs **OS:** darwin (21.4.0) **VSCode:** 1.66.1 **Error message** ``` ps: stdin: not a...
Should not be grayed out.
For the following function: ```rs pub unsafe fn load_u8(p: *const u8) -> u8 { let mut ret: u8; std::arch::asm!( "mov {ret}, byte ptr [{p}]", p = in(reg) p, ret =...
See #40 for discussion. Could download into the `.vscode/extensions/` dir?
I installed flowistry via the vscode extension. After patching the rpath of the cargo-flowistry and flowistry-driver binaries, I still get this error when running a flowistry command in vscode: ```...