You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/benchmark.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -48,15 +48,15 @@ jobs:
48
48
49
49
- name: Run benchmark on current branch
50
50
run: |
51
-
( for i in {1..${{ steps.settings.outputs.benchmark_repetitions }}}; do go test ./... -run=XXX -bench=. -benchmem -shuffle=on; done | sed 's/pkg:.*/pkg: github.com\/onflow\/cadence\/runtime/' ) | tee new.txt
51
+
( for i in {1..${{ steps.settings.outputs.benchmark_repetitions }}}; do go test ./... -run=XXX -bench=. -benchmem -shuffle=on; done | sed 's/pkg:.*/pkg: github.com\/onflow\/cadence\/' ) | tee new.txt
52
52
# the package replace line above is to make the results table more readable, since it is not fragmented by package
( for i in {1..${{ steps.settings.outputs.benchmark_repetitions }}}; do go test ./... -run=XXX -bench=. -benchmem -shuffle=on; done | sed 's/pkg:.*/pkg: github.com\/onflow\/cadence\/runtime/' ) | tee old.txt
59
+
( for i in {1..${{ steps.settings.outputs.benchmark_repetitions }}}; do go test ./... -run=XXX -bench=. -benchmem -shuffle=on; done | sed 's/pkg:.*/pkg: github.com\/onflow\/cadence\/' ) | tee old.txt
60
60
61
61
# see https://trstringer.com/github-actions-multiline-strings/ to see why this part is complex
Copy file name to clipboardexpand all lines: docs/FAQ.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ There are several options to run the analyzer pass with the linter tool:
43
43
44
44
## Analyzing Cadence values / state snapshots
45
45
46
-
To analyze Cadence values (`interpreter.Value`), you can use the function [`interpreter.InspectValue`](https://github.com/onflow/cadence/blob/master/runtime/interpreter/inspect.go#L31).
46
+
To analyze Cadence values (`interpreter.Value`), you can use the function [`interpreter.InspectValue`](https://github.com/onflow/cadence/blob/master/interpreter/inspect.go#L31).
47
47
48
48
To find static types in Cadence values (e.g. in type values, containers, capabilities), you can see which values contain static types in the [Cadence 1.0 static type migration code](https://github.com/onflow/cadence/blob/master/migrations/statictypes/statictype_migration.go#L67).
Copy file name to clipboardexpand all lines: npm-packages/cadence-parser/package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
}
19
19
},
20
20
"scripts": {
21
-
"build": "npm run build:types && npm run build:esm && npm run build:cjs && GOARCH=wasm GOOS=js go build -o ./dist/cadence-parser.wasm ../../runtime/cmd/parse",
21
+
"build": "npm run build:types && npm run build:esm && npm run build:cjs && GOARCH=wasm GOOS=js go build -o ./dist/cadence-parser.wasm ../../cmd/parse",
22
22
"build:types": "tsc --emitDeclarationOnly --module system --outDir dist/types",
0 commit comments