Skip to content

Commit

Permalink
doc: remove old, dead links (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce authored May 5, 2024
1 parent 187afdd commit 914bf85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wiki/Core.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This wiki page should give the in-depth explanation of the inner workings of *fl

## The Slicing Process

All slicing steps are defined in [src/core/steps.ts](https://github.com/Code-Inspect/flowr/blob/main/src/core/steps.ts). This is the core definition of all steps executed by the [`SteppingSlicer`](https://github.com/Code-Inspect/flowr/blob/main/src/core/slicer.ts) (refer to the [interface](https://github.com/Code-Inspect/flowr/wiki/Interface) wiki page for more information on how to use the stepping slicer).
All slicing steps are defined in [src/core/steps.ts](https://github.com/Code-Inspect/flowr/blob/main/src/core/steps.ts). This is the core definition of all steps executed by the `SteppingSlicer` (refer to the [interface](https://github.com/Code-Inspect/flowr/wiki/Interface) wiki page for more information on how to use the stepping slicer).

If you want to execute a single step (for whatever reason) there are two ways to do that:

Expand Down
3 changes: 1 addition & 2 deletions wiki/Interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ Similarly, the new `PipelineExecutor`...
2. can be executed step-by-step
3. can repeat steps (e.g., to calculate multiple slices on the same input)

See the [documentation](https://code-inspect.github.io/flowr/doc/classes/src_core_pipeline-executor.PipelineExecutor.html) for more information.
See the documentation for more information.

### (Deprecated) Slicing With The `SteppingSlicer`

Expand Down Expand Up @@ -1022,7 +1022,6 @@ See the _documentation_ for more.
The definition of all steps happens in [src/core/steps.ts](https://github.com/Code-Inspect/flowr/blob/main/src/core/steps.ts).
Investigating the file provides you an overview of the slicing phases, as well as the functions that are called to perform the respective step.
The [`SteppingSlicer`](https://github.com/Code-Inspect/flowr/blob/main/src/core/stepping-slicer.ts) simply glues them together and passes the results of one step to the next.
If you are interested in the type magic associated with the stepping slicers output type, refer to [src/core/output.ts](https://github.com/Code-Inspect/flowr/blob/main/src/core/output.ts).

If you add a new step, make sure to modify all of these locations accordingly.

Expand Down

0 comments on commit 914bf85

Please sign in to comment.