fossil build keep @:keep
Some checks failed
CI / test-core (14, ubuntu-latest, 3.x, interp) (push) Failing after 46s
CI / test-core (14, ubuntu-latest, 3.x, js) (push) Failing after 59s
CI / test-core (14, ubuntu-latest, 3.x, py) (push) Failing after 50s
CI / test-core (14, ubuntu-latest, 3.x, nodejs) (push) Failing after 1m10s
CI / test-core (14, ubuntu-latest, 3.x, cpp) (push) Failing after 1m41s

This commit is contained in:
2025-09-16 09:07:30 -05:00
parent f12cc58815
commit 41ba78d886

View File

@@ -653,6 +653,17 @@ class Kiss {
buildFieldNames.remove(field.name);
}
if(field.meta != null) {
for(meta in field.meta) {
switch(meta) {
case {name:name, params: null | []}:
fossilCode += '@${name} ';
case {name:name, params: params}:
throw 'todo fossil build not implemented for call-form meta entry';
}
}
}
// Field modifiers:
var accessOrder = [
APublic,