File tree 3 files changed +9
-7
lines changed
DynamoDbEncryption/dafny/DynamoDbEncryptionTransforms/src
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,11 @@ module DdbMiddlewareConfig {
47
47
function SearchModifies (config: Config ) : set < object >
48
48
{
49
49
// set x, y | y in config.tableEncryptionConfigs && x in OneSearchModifies(config.tableEncryptionConfigs[y]) :: x
50
- set versions < - set configValue < - config. tableEncryptionConfigs. Values | configValue. search. Some? :: configValue. search. value. versions,
51
- keyStore < - set version < - versions :: version. keySource. store,
52
- obj < - keyStore. Modifies | obj in keyStore. Modifies :: obj
50
+ set
51
+ versions < - (set configValue < - config. tableEncryptionConfigs. Values | configValue. search. Some? :: configValue. search. value. versions),
52
+ keyStore < - (set version < - versions :: version. keySource. store),
53
+ obj < - keyStore. Modifies
54
+ {:nowarn} :: obj
53
55
54
56
}
55
57
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ module
138
138
+ (if tableConfig. legacyOverride. Some? then tableConfig. legacyOverride. value. encryptor. Modifies else {})
139
139
+ (if tableConfig. search. Some? then tableConfig. search. value. versions[0]. keyStore. Modifies else {})
140
140
)
141
- :: o;
141
+ {:nowarn} :: o; // ignore warning for missing trigger on quantifier
142
142
143
143
var allLogicalTableNames := {};
144
144
var i := 0;
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ include $(SMITHY_DAFNY_ROOT)/SmithyDafnyMakefile.mk
13
13
14
14
VERIFY_TIMEOUT := 250
15
15
16
- verify:DAFNY_OPTIONS =--allow-warnings --allow-external-contracts --log-format csv
17
- verify_single:DAFNY_OPTIONS =--allow-warnings --allow-external-contracts --log-format csv
18
- verify_service:DAFNY_OPTIONS =--allow-warnings --allow-external-contracts --log-format csv
16
+ verify:DAFNY_OPTIONS =--allow-deprecation --allow-external-contracts --log-format csv
17
+ verify_single:DAFNY_OPTIONS =--allow-deprecation --allow-external-contracts --log-format csv
18
+ verify_service:DAFNY_OPTIONS =--allow-deprecation --allow-external-contracts --log-format csv
19
19
20
20
transpile_implementation_net : DAFNY_OPTIONS=--allow-warnings --compile-suffix --legacy-module-names --allow-external-contracts
21
21
transpile_test_net : DAFNY_OPTIONS=--allow-warnings --include-test-runner --compile-suffix --legacy-module-names --allow-external-contracts
You can’t perform that action at this time.
0 commit comments