Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit f226560

Browse files
authored
Merge pull request #329 from dapphub/notmp
Rename `rules.k.tmp` to `rules.k.tmpl`
2 parents a0c9ce1 + 48ccbf8 commit f226560

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@ Once the proof is complete, we can explore the generated symbolic execution trac
100100
klab debug <hash>
101101
```
102102

103+
### Embedded rules
104+
105+
klab comes with a set of pre-defined K rewrite rules, additional to the ones
106+
defined in [evm-semantics](https://github.com/kframework/evm-semantics). They
107+
are located in `resources/rules.k.tmpl`.
108+
103109
### Key Bindings
104110

105111
Toggle different views by pressing any of the following keys:

lib/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ endmodule
175175
.join("\n")
176176

177177
const rules_k = rules_template([
178-
fs.readFileSync(path.join(__dirname, "../resources/rules.k.tmp")).toString(),
178+
fs.readFileSync(path.join(__dirname, "../resources/rules.k.tmpl")).toString(),
179179
rules
180180
])
181181
const rules_path = path.join(KLAB_OUT, "rules.k");
File renamed without changes.

0 commit comments

Comments
 (0)