From 11fe193e137d59e918bb1cbce339d9f8fb4e99c2 Mon Sep 17 00:00:00 2001 From: Jordan Last Date: Mon, 11 Dec 2023 12:32:53 -0600 Subject: [PATCH] add try --- property_tests/arbitraries/js_function_name_arb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property_tests/arbitraries/js_function_name_arb.ts b/property_tests/arbitraries/js_function_name_arb.ts index 0ec2afccfe..9d04ad2b97 100644 --- a/property_tests/arbitraries/js_function_name_arb.ts +++ b/property_tests/arbitraries/js_function_name_arb.ts @@ -78,7 +78,7 @@ const azleKeywords = [ 'Vec' ]; -const jsKeywords = ['eval', 'var', 'new']; +const jsKeywords = ['eval', 'var', 'new', 'try']; export const JsFunctionNameArb = fc .stringMatching(/^(_[a-zA-Z0-9]+|[a-zA-Z][a-zA-Z0-9]*)$/)