├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── feature-request.yaml ├── pull_request_template.md ├── release.yml └── workflows │ ├── benchmark.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── compat.yaml │ ├── compatibility-check-template.yml │ ├── compatibility-check.yml │ ├── dependency-review.yml │ ├── downstream.yml │ ├── get-contracts.yml │ ├── parser-npm-publish.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .mailmap ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── activations ├── activations.go └── activations_test.go ├── ast ├── access.go ├── access_test.go ├── argument.go ├── argument_test.go ├── ast.go ├── attachment.go ├── attachment_test.go ├── block.go ├── block_test.go ├── composite.go ├── composite_test.go ├── conditionkind.go ├── conditionkind_string.go ├── conditionkind_test.go ├── declaration.go ├── elementtype.go ├── elementtype_string.go ├── entitlement_declaration.go ├── entitlement_declaration_test.go ├── expression.go ├── expression_as_type.go ├── expression_extractor.go ├── expression_extractor_test.go ├── expression_test.go ├── function_declaration.go ├── function_declaration_test.go ├── identifier.go ├── import.go ├── import_test.go ├── inspect.go ├── inspector.go ├── inspector_test.go ├── interface.go ├── interface_test.go ├── memberindices.go ├── memberindices_test.go ├── members.go ├── members_test.go ├── operation.go ├── operation_string.go ├── operation_test.go ├── parameter.go ├── parameter_test.go ├── parameterlist.go ├── parameterlist_test.go ├── position.go ├── position_test.go ├── pragma.go ├── pragma_test.go ├── precedence.go ├── precedence_string.go ├── prettier.go ├── primitiveaccess_string.go ├── program.go ├── program_test.go ├── programindices.go ├── programindices_test.go ├── statement.go ├── statement_test.go ├── string.go ├── string_template_test.go ├── string_test.go ├── transaction_declaration.go ├── transaction_declaration_test.go ├── transfer.go ├── transfer_test.go ├── transferoperation.go ├── transferoperation_string.go ├── transferoperation_test.go ├── type.go ├── type_test.go ├── typeparameter.go ├── typeparameter_test.go ├── typeparameterlist.go ├── typeparameterlist_test.go ├── variable_declaration.go ├── variable_declaration_test.go ├── variablekind.go ├── variablekind_string.go ├── variablekind_test.go ├── visitor.go └── walk.go ├── bbq ├── commons │ ├── constants.go │ ├── handlers.go │ └── types.go ├── compiler │ ├── benchmark_test.go │ ├── builtin_globals.go │ ├── codegen.go │ ├── codegen_test.go │ ├── compiler.go │ ├── compiler_metering_test.go │ ├── compiler_test.go │ ├── config.go │ ├── constant.go │ ├── control_flow.go │ ├── desugar.go │ ├── desugared_elaboration.go │ ├── function.go │ ├── global_variable.go │ ├── local.go │ ├── peephole_pass.go │ ├── peephole_patterns.go │ ├── returns.go │ ├── stack.go │ └── typegen.go ├── constant │ ├── constant.go │ ├── kind.go │ └── kind_string.go ├── contract.go ├── function.go ├── global.go ├── import.go ├── leb128 │ ├── leb128.go │ └── leb128_test.go ├── line_number_table.go ├── opcode │ ├── gen │ │ ├── instructions.schema.json │ │ └── main.go │ ├── instruction.go │ ├── instruction_jump.go │ ├── instructions.go │ ├── instructions.yml │ ├── opcode.go │ ├── opcode_flow.go │ ├── opcode_string.go │ ├── print.go │ ├── print_test.go │ └── upvalue.go ├── program.go ├── program_printer.go ├── statictype.go ├── test_utils │ └── utils.go ├── variable.go └── vm │ ├── builtin_globals.go │ ├── callframe.go │ ├── config.go │ ├── context.go │ ├── errors.go │ ├── executable_program.go │ ├── linker.go │ ├── native_function.go │ ├── reference_tracking.go │ ├── test │ ├── ft_test.go │ ├── interpreter_test.go │ ├── utils.go │ ├── vm_bench_test.go │ └── vm_test.go │ ├── types.go │ ├── upvalue.go │ ├── value.go │ ├── value_account_storage.go │ ├── value_accountcapabilitycontroller.go │ ├── value_address.go │ ├── value_array.go │ ├── value_capability.go │ ├── value_character.go │ ├── value_composite.go │ ├── value_deployedcontract.go │ ├── value_dictionary.go │ ├── value_function.go │ ├── value_implicit_reference.go │ ├── value_inclusiverange.go │ ├── value_int.go │ ├── value_iterator.go │ ├── value_number.go │ ├── value_optional.go │ ├── value_path.go │ ├── value_storagecapabilitycontroller.go │ ├── value_string.go │ ├── value_type.go │ ├── value_ufix64.go │ ├── value_uint64.go │ ├── vm.go │ └── vm_test.go ├── benchmarks ├── binarytrees.cdc ├── fannkuch.cdc ├── fib_dynamic.cdc ├── fib_iterative.cdc └── fib_recursive.cdc ├── bump-version.sh ├── cadence_furever.png ├── check-headers.sh ├── cmd ├── check │ └── main.go ├── cmd.go ├── decode-slab │ └── main.go ├── decode-state-values │ └── main.go ├── errors │ ├── README.md │ ├── errors.go │ ├── gen │ │ └── main.go │ ├── main.go │ └── placeholders.go ├── execute │ ├── colors.go │ ├── debugger.go │ ├── execute.go │ └── repl.go ├── info │ ├── README.md │ └── main.go ├── json-cdc │ └── main.go ├── lex │ └── main.go ├── main │ └── main.go ├── minifier │ ├── minifier.go │ └── minifier_test.go └── parse │ ├── main.go │ └── main_wasm.go ├── codecov.yml ├── common ├── address.go ├── address_test.go ├── addresslocation.go ├── addresslocation_test.go ├── bigint.go ├── bigint_test.go ├── bimap │ ├── bimap.go │ └── bimap_test.go ├── compositekind.go ├── compositekind_string.go ├── compositekind_test.go ├── computationkind.go ├── computationkind_string.go ├── concat.go ├── controlstatement.go ├── controlstatement_string.go ├── declarationkind.go ├── declarationkind_string.go ├── declarationkind_test.go ├── deps │ ├── node.go │ ├── node_test.go │ └── set.go ├── enumerate.go ├── equatable.go ├── identifierlocation.go ├── identifierlocation_test.go ├── incomparable.go ├── integerliteralkind.go ├── integerliteralkind_string.go ├── intervalst │ ├── interval.go │ ├── intervalst.go │ ├── intervalst_test.go │ └── node.go ├── list │ └── list.go ├── location.go ├── location_test.go ├── memorykind.go ├── memorykind_string.go ├── metering.go ├── operandside.go ├── operandside_string.go ├── operationkind.go ├── operationkind_string.go ├── orderedmap │ ├── orderedmap.go │ └── orderedmap_test.go ├── pathdomain.go ├── pathdomain_string.go ├── persistent │ ├── orderedset.go │ └── orderedset_test.go ├── repllocation.go ├── repllocation_test.go ├── scriptlocation.go ├── scriptlocation_test.go ├── slice_utils.go ├── slice_utils_test.go ├── storagedomain.go ├── stringlocation.go ├── stringlocation_test.go ├── transactionlocation.go └── transactionlocation_test.go ├── compat ├── README.md ├── main.py ├── requirements.txt ├── setup.md └── suite │ ├── dapper-labs-nba-smart-contracts.yaml │ ├── dapper-labs-nfl-smart-contracts.yaml │ ├── flow-core-contracts.yaml │ ├── flow-ft.yaml │ ├── flow-nft.yaml │ └── green-goo-dao-flow-utils.yaml ├── docs ├── Cadence - Implementation, Present and Future.odp ├── Cadence - Implementation, Present and Future.pdf ├── Cadence Implementation.odp ├── Cadence Implementation.pdf ├── FAQ.md ├── README.md ├── anti-patterns.mdx ├── architecture.monopic ├── architecture.png ├── architecture.svg ├── cadence.ebnf ├── contract-upgrades.mdx ├── design-patterns.mdx ├── development.md ├── go.md ├── goland.md ├── images │ ├── compatibility_check_action_params.png │ ├── compatibility_check_action_trigger.png │ ├── create_release.png │ ├── release_action.png │ └── release_tag.png ├── index.mdx ├── json-cadence-spec.md ├── language │ ├── access-control.md │ ├── accounts.mdx │ ├── attachments.md │ ├── built-in-functions.mdx │ ├── capability-based-access-control.md │ ├── composite-types.mdx │ ├── constants-and-variables.md │ ├── contract-updatability.md │ ├── contracts.mdx │ ├── control-flow.md │ ├── core-events.md │ ├── crypto.mdx │ ├── enumerations.md │ ├── environment-information.md │ ├── events.md │ ├── functions.mdx │ ├── glossary.md │ ├── imports.mdx │ ├── index.md │ ├── interfaces.mdx │ ├── operators.md │ ├── references.mdx │ ├── resources.mdx │ ├── restricted-types.md │ ├── run-time-types.md │ ├── scope.md │ ├── syntax.md │ ├── transactions.md │ ├── type-annotations.md │ ├── type-hierarchy.md │ ├── type-hierarchy.monopic │ ├── type-hierarchy.png │ ├── type-inference.md │ ├── type-safety.md │ └── values-and-types.mdx ├── lint.js ├── measuring-time.mdx ├── package-lock.json ├── package.json ├── releasing.md ├── security-best-practices.mdx ├── solidity-to-cadence.mdx ├── syntax-highlighting.md ├── syntax │ ├── Cadence.syntax │ └── Syntax Notation.md ├── testing-framework.mdx ├── tutorial │ ├── 01-first-steps.mdx │ ├── 02-hello-world.mdx │ ├── 03-resources.mdx │ ├── 04-capabilities.mdx │ ├── 05-non-fungible-tokens-1.mdx │ ├── 05-non-fungible-tokens-2.mdx │ ├── 06-fungible-tokens.mdx │ ├── 07-marketplace-setup.mdx │ ├── 08-marketplace-compose.mdx │ ├── 09-voting.mdx │ ├── 10-resources-compose.mdx │ ├── deploybox.png │ └── txbox.png └── why.md ├── encoding ├── README.md ├── ccf │ ├── bench_test.go │ ├── ccf.go │ ├── ccf_test.go │ ├── ccf_type_id.go │ ├── ccf_type_id_test.go │ ├── consts.go │ ├── decode.go │ ├── decode_type.go │ ├── decode_typedef.go │ ├── encode.go │ ├── encode_type.go │ ├── encode_typedef.go │ ├── service_events_test.go │ ├── simpletype.go │ ├── simpletype_string.go │ ├── simpletype_test.go │ ├── sort.go │ └── traverse_value.go └── json │ ├── decode.go │ ├── encode.go │ ├── encoding_test.go │ └── json.go ├── errors ├── errors.go └── wrappanic.go ├── examples └── quicksort.cdc ├── fixedpoint ├── check.go ├── convert.go ├── fixedpoint.go ├── fixedpoint_test.go ├── parse.go └── parse_test.go ├── format ├── address.go ├── array.go ├── bool.go ├── bytes.go ├── bytes_test.go ├── capability.go ├── composite.go ├── dictionary.go ├── fix.go ├── fix_test.go ├── int.go ├── nil.go ├── pad.go ├── path.go ├── reference.go ├── string.go ├── type.go └── void.go ├── fuzz.go ├── fuzz └── crashers_test.go ├── go.mod ├── go.sum ├── integer └── integer.go ├── interpreter ├── account_storagemap.go ├── account_storagemap_test.go ├── account_test.go ├── arithmetic_test.go ├── array_test.go ├── attachments_test.go ├── bitwise_test.go ├── builtinfunctions_test.go ├── character_test.go ├── composite_value_test.go ├── computation_metering_test.go ├── condition_test.go ├── config.go ├── container_mutation_test.go ├── contract_test.go ├── conversion.go ├── conversion_test.go ├── debugger.go ├── declaration_test.go ├── decode.go ├── deepcopyremove_test.go ├── dictionary_test.go ├── div_mod_test.go ├── domain_storagemap.go ├── domain_storagemap_test.go ├── dynamic_casting_test.go ├── encode.go ├── encoding_benchmark_test.go ├── encoding_test.go ├── entitlements_test.go ├── enum_test.go ├── equality_test.go ├── errors.go ├── errors_test.go ├── fib_test.go ├── fixedpoint_test.go ├── for_test.go ├── function_test.go ├── globalvariables.go ├── handlers_test.go ├── hashablevalue.go ├── hashablevalue_test.go ├── idcapability_test.go ├── if_test.go ├── import.go ├── import_test.go ├── inclusive_range_iterator.go ├── indexing_test.go ├── inspect.go ├── inspect_test.go ├── integer.go ├── integers_test.go ├── interface.go ├── interface_test.go ├── interpreter.go ├── interpreter_expression.go ├── interpreter_import.go ├── interpreter_invocation.go ├── interpreter_statement.go ├── interpreter_test.go ├── interpreter_tracing.go ├── interpreter_tracing_test.go ├── interpreter_transaction.go ├── invocation.go ├── invocation_test.go ├── location.go ├── location_test.go ├── member_test.go ├── memory_metering_test.go ├── metatype_test.go ├── minus_test.go ├── misc_test.go ├── mul_test.go ├── native_function.go ├── negate_test.go ├── nesting_test.go ├── number.go ├── number_test.go ├── path_test.go ├── pathcapability_test.go ├── plus_test.go ├── primitivestatictype.go ├── primitivestatictype_string.go ├── primitivestatictype_test.go ├── program.go ├── range_value_test.go ├── reference_test.go ├── resources_test.go ├── runtimetype_test.go ├── sharedstate.go ├── simplecompositevalue.go ├── statementresult.go ├── statictype.go ├── statictype_test.go ├── storage.go ├── storage_test.go ├── storagemapkey.go ├── string_test.go ├── stringatreevalue.go ├── stringatreevalue_test.go ├── struct_stringer_test.go ├── subtype_check.gen.go ├── subtype_check.go ├── switch_test.go ├── testdata │ ├── comp_v2_96d7e06eaf4b3fcf.cbor.gz │ ├── comp_v3_99dc360eee32dcec.cbor.gz │ ├── comp_v3_b52a33b7e56868f6.cbor.gz │ ├── comp_v3_d99d7e6b4dad41e1.cbor.gz │ ├── link_v3_2392f05c3b72f235.cbor.gz │ └── link_v3_3a791fe1b8243e73.cbor.gz ├── tracing_disabled.go ├── tracing_enabled.go ├── transactions_test.go ├── transfer_test.go ├── type_check_gen │ ├── customizer.go │ └── main.go ├── uint64atreevalue.go ├── uuid_test.go ├── value.go ├── value_account.go ├── value_account_accountcapabilities.go ├── value_account_capabilities.go ├── value_account_contracts.go ├── value_account_inbox.go ├── value_account_storage.go ├── value_account_storagecapabilities.go ├── value_accountcapabilitycontroller.go ├── value_accountkey.go ├── value_address.go ├── value_array.go ├── value_authaccount_keys.go ├── value_block.go ├── value_bool.go ├── value_capability.go ├── value_character.go ├── value_composite.go ├── value_deployedcontract.go ├── value_deployment_result.go ├── value_dictionary.go ├── value_ephemeral_reference.go ├── value_fix128.go ├── value_fix64.go ├── value_function.go ├── value_function_test.go ├── value_int.go ├── value_int128.go ├── value_int16.go ├── value_int256.go ├── value_int32.go ├── value_int64.go ├── value_int8.go ├── value_link.go ├── value_nil.go ├── value_number.go ├── value_optional.go ├── value_path.go ├── value_pathcapability.go ├── value_placeholder.go ├── value_publickey.go ├── value_published.go ├── value_range.go ├── value_reference.go ├── value_some.go ├── value_some_test.go ├── value_storage_reference.go ├── value_storagecapabilitycontroller.go ├── value_string.go ├── value_test.go ├── value_type.go ├── value_ufix128.go ├── value_ufix64.go ├── value_uint.go ├── value_uint128.go ├── value_uint16.go ├── value_uint256.go ├── value_uint32.go ├── value_uint64.go ├── value_uint8.go ├── value_void.go ├── value_word128.go ├── value_word16.go ├── value_word256.go ├── value_word32.go ├── value_word64.go ├── value_word8.go ├── valuedeclaration.go ├── values_test.go ├── variable.go ├── variable_activations.go ├── visitor.go ├── walk.go └── while_test.go ├── meetings └── README.md ├── npm-packages ├── cadence-parser │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── go.js │ │ └── index.ts │ ├── tests │ │ ├── index.test.ts │ │ └── setup.js │ └── tsconfig.json └── monaco-languageclient-cadence │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json ├── old_parser ├── benchmark_test.go ├── comment.go ├── declaration.go ├── declaration_test.go ├── docstring.go ├── docstring_test.go ├── errors.go ├── expression.go ├── expression_test.go ├── function.go ├── invalidnumberliteralkind.go ├── invalidnumberliteralkind_string.go ├── keyword.go ├── lexer │ ├── lexer.go │ ├── lexer_test.go │ ├── state.go │ ├── token.go │ ├── tokenstream.go │ └── tokentype.go ├── parser.go ├── parser_test.go ├── statement.go ├── statement_test.go ├── transaction.go ├── type.go └── type_test.go ├── parser ├── benchmark_test.go ├── comment.go ├── comment_test.go ├── declaration.go ├── declaration_test.go ├── docstring.go ├── docstring_test.go ├── errors.go ├── expression.go ├── expression_test.go ├── function.go ├── invalidnumberliteralkind.go ├── invalidnumberliteralkind_string.go ├── keyword.go ├── lexer │ ├── lexer.go │ ├── lexer_test.go │ ├── state.go │ ├── token.go │ ├── tokenstream.go │ └── tokentype.go ├── memory_metering_test.go ├── parser.go ├── parser_test.go ├── statement.go ├── statement_test.go ├── transaction.go ├── type.go └── type_test.go ├── pretty ├── print.go └── print_test.go ├── runtime ├── .gitignore ├── account_storage.go ├── account_test.go ├── attachments_test.go ├── authorizer.go ├── capabilities_test.go ├── capabilitycontrollers_test.go ├── checking_environment.go ├── code.go ├── config.go ├── context.go ├── contract.go ├── contract_function_executor.go ├── contract_test.go ├── contract_update_test.go ├── contract_update_validation_test.go ├── convertTypes.go ├── convertTypes_test.go ├── convertValues.go ├── convertValues_test.go ├── coverage.go ├── coverage_test.go ├── crypto_test.go ├── debugger_test.go ├── deployedcontract_test.go ├── deployment_test.go ├── empty.go ├── entitlements_test.go ├── environment.go ├── error_test.go ├── errors.go ├── errors_test.go ├── events.go ├── executor.go ├── external.go ├── ft_test.go ├── handlers.go ├── import_test.go ├── imported_values_memory_metering_test.go ├── inbox_test.go ├── interface.go ├── literal.go ├── literal_test.go ├── location.go ├── memory.go ├── nft_test.go ├── pprof.go ├── predeclaredvalues_test.go ├── profile.go ├── profile_test.go ├── program_params_validation_test.go ├── recover.go ├── repl.go ├── resource_duplicate_test.go ├── resourcedictionary_test.go ├── rlp_test.go ├── runtime.go ├── runtime_memory_metering_test.go ├── runtime_test.go ├── script_executor.go ├── slabindex.go ├── stackdepth.go ├── storage.go ├── storage_test.go ├── subtype_check_test.go ├── test-export-json-deterministic.json ├── tracing_disabled_test.go ├── tracing_enabled_test.go ├── transaction_executor.go ├── type_test.go ├── types.go ├── validation.go ├── validation_test.go ├── value.go └── vm_environment.go ├── sema ├── access.go ├── access_test.go ├── accesscheckmode.go ├── accesscheckmode_string.go ├── accesses_test.go ├── account.cdc ├── account.gen.go ├── account.go ├── account_capability_controller.cdc ├── account_capability_controller.gen.go ├── account_capability_controller.go ├── account_test.go ├── any_test.go ├── any_type.go ├── anyattachment_types.go ├── anyresource_type.go ├── anystruct_type.go ├── arrays_dictionaries_test.go ├── assert_test.go ├── assignment_test.go ├── attachments_test.go ├── before_extractor.go ├── before_extractor_test.go ├── benchmark_test.go ├── binaryoperationkind.go ├── binaryoperationkind_string.go ├── block.cdc ├── block.gen.go ├── block.go ├── bool_type.go ├── boolean_test.go ├── builtinfunctions_test.go ├── capability_controller_test.go ├── capability_test.go ├── casting_test.go ├── character.cdc ├── character.gen.go ├── character.go ├── character_test.go ├── check_array_expression.go ├── check_assignment.go ├── check_attach_expression.go ├── check_binary_expression.go ├── check_block.go ├── check_casting_expression.go ├── check_composite_declaration.go ├── check_conditional.go ├── check_conditions.go ├── check_create_expression.go ├── check_declaration_test.go ├── check_destroy_expression.go ├── check_dictionary_expression.go ├── check_emit_statement.go ├── check_event_declaration.go ├── check_event_declaration_test.go ├── check_expression.go ├── check_for.go ├── check_force_expression.go ├── check_function.go ├── check_import_declaration.go ├── check_interface_declaration.go ├── check_invocation_expression.go ├── check_member_expression.go ├── check_path_expression.go ├── check_path_expression_test.go ├── check_pragma.go ├── check_reference_expression.go ├── check_remove_statement.go ├── check_return_statement.go ├── check_string_template_expression.go ├── check_swap.go ├── check_switch.go ├── check_transaction_declaration.go ├── check_unary_expression.go ├── check_variable_declaration.go ├── check_while.go ├── checker.go ├── checker_test.go ├── composite_test.go ├── conditional_test.go ├── conditions_test.go ├── config.go ├── conformance_test.go ├── containerkind.go ├── containerkind_string.go ├── contract_test.go ├── crypto_algorithm_types.go ├── crypto_algorithm_types_test.go ├── crypto_test.go ├── declaration_test.go ├── declarations.go ├── deployedcontract.cdc ├── deployedcontract.gen.go ├── deployedcontract.go ├── deployment_result.cdc ├── deployment_result.gen.go ├── deployment_result.go ├── dictionary_test.go ├── dynamic_casting_test.go ├── elaboration.go ├── entitlements.cdc ├── entitlements.gen.go ├── entitlements.go ├── entitlements_test.go ├── entitlementset.go ├── entitlementset_test.go ├── entrypoint.go ├── entrypoint_test.go ├── enum_test.go ├── error_handling_test.go ├── errors.go ├── errors_test.go ├── events_test.go ├── external_mutation_test.go ├── fixedpoint_test.go ├── for_test.go ├── force_test.go ├── function_activations.go ├── function_expression_test.go ├── function_invocations.go ├── function_test.go ├── gen │ ├── golden_test.go │ ├── main.go │ ├── main_test.go │ └── testdata │ │ ├── comparable │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── composite_type_pragma │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── constructor │ │ ├── contract │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── docstrings │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── entitlement │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── equatable │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── exportable │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── fields │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── functions │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── importable │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── member_accessible │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── nested │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── primitive │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── simple_interface │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── simple_resource │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ ├── simple_struct │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go │ │ └── storable │ │ ├── helper.go │ │ ├── test.cdc │ │ └── test.golden.go ├── genericfunction_test.go ├── hashable_struct.cdc ├── hashable_struct.gen.go ├── hashable_struct.go ├── hashable_struct_test.go ├── hashalgorithm_string.go ├── if_test.go ├── import.go ├── import_test.go ├── indexing_test.go ├── initialization_info.go ├── initialization_test.go ├── integer_test.go ├── interface_test.go ├── interfaceset.go ├── intersection_test.go ├── invalid_test.go ├── invalid_type.go ├── invocation_test.go ├── member_accesses.go ├── member_test.go ├── meta_type.go ├── metatype_test.go ├── move_test.go ├── nesting_test.go ├── never_test.go ├── never_type.go ├── nil_coalescing_test.go ├── occurrence_matcher_test.go ├── occurrences.go ├── occurrences_test.go ├── operations_test.go ├── optional_test.go ├── orderdmaps.go ├── overloading_test.go ├── path_test.go ├── path_type.go ├── positioninfo.go ├── post_conditions_rewrite.go ├── pragma_test.go ├── predeclaredvalues_test.go ├── purity_test.go ├── range_test.go ├── range_value_test.go ├── ranges.go ├── reference_test.go ├── resolve.go ├── resource_invalidation.go ├── resource_test.go ├── resourceinfo.go ├── resourceinvalidationkind.go ├── resourceinvalidationkind_string.go ├── resources.go ├── resources_test.go ├── return_info.go ├── return_test.go ├── rlp_test.go ├── runtime_type_constructors.go ├── runtimetype_test.go ├── signaturealgorithm_string.go ├── simple_type.go ├── storable_test.go ├── storable_type.go ├── storage_capability_controller.cdc ├── storage_capability_controller.gen.go ├── storage_capability_controller.go ├── string_test.go ├── string_type.go ├── struct_stringer.cdc ├── struct_stringer.gen.go ├── struct_stringer.go ├── struct_stringer_test.go ├── subtype_check.gen.go ├── subtype_check.go ├── subtype_comparison_disabled.go ├── subtype_comparison_enabled.go ├── swap_test.go ├── switch_test.go ├── transactions_test.go ├── type.go ├── type_check_gen │ ├── customizer.go │ └── main.go ├── type_inference_test.go ├── type_names.go ├── type_tags.go ├── type_test.go ├── typeannotationstate.go ├── typeannotationstate_string.go ├── typeargument_test.go ├── typecheckfunc.go ├── utils_test.go ├── variable.go ├── variable_activations.go ├── variable_activations_test.go ├── void_type.go └── while_test.go ├── semgrep-compiler-vm.yaml ├── semgrep.yaml ├── stdlib ├── account.go ├── account_test.go ├── assert.go ├── block.go ├── bls.cdc ├── bls.gen.go ├── bls.go ├── builtin.go ├── builtin_test.go ├── cadence_v0.42_to_v1_contract_upgrade_validation_test.go ├── cadence_v0.42_to_v1_contract_upgrade_validator.go ├── contract_update_validation.go ├── contracts │ ├── flow.json │ ├── test.cdc │ └── test.go ├── crypto.go ├── flow.go ├── flow_test.go ├── functions.go ├── hashalgorithm.go ├── log.go ├── panic.go ├── publickey.go ├── random.go ├── random_test.go ├── range.go ├── rlp.cdc ├── rlp.gen.go ├── rlp.go ├── rlp │ ├── rlp.go │ └── rlp_test.go ├── signaturealgorithm.go ├── test-framework.go ├── test.go ├── test_contract.go ├── test_emulatorbackend.go ├── test_test.go ├── type-comparator.go ├── types.go └── value.go ├── test_utils ├── common_utils │ └── utils.go ├── contracts │ ├── contracts.go │ ├── contracts │ │ ├── Burner.cdc │ │ ├── FlowToken.cdc │ │ ├── FungibleToken.cdc │ │ ├── FungibleTokenMetadataViews.cdc │ │ ├── MetadataViews.cdc │ │ ├── NonFungibleToken.cdc │ │ └── ViewResolver.cdc │ ├── scripts │ │ └── flowToken │ │ │ └── get_balance.cdc │ └── transactions │ │ └── flowToken │ │ ├── mint_tokens.cdc │ │ ├── setup_account.cdc │ │ └── transfer_tokens.cdc ├── interpreter_utils │ ├── interpreter.go │ └── values.go ├── runtime_utils │ ├── location.go │ ├── storage.go │ ├── testinterface.go │ ├── testledger.go │ ├── testruntime.go │ └── transactions.go ├── sema_utils │ └── utils.go ├── test_utils.go └── vm_invokable.go ├── tools ├── accounts-script │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── iterate_storage.cdc │ └── main.go ├── analysis │ ├── analysis.go │ ├── analysis_test.go │ ├── analyzer.go │ ├── config.go │ ├── diagnostic.go │ ├── error.go │ ├── inspector.go │ ├── loadmode.go │ ├── pass.go │ ├── program.go │ └── programs.go ├── ast-explorer │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── main.go │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── cadence.ts │ │ ├── index.html │ │ ├── index.tsx │ │ └── tree.tsx │ ├── tsconfig.json │ └── webpack.config.js ├── compare-parsing │ └── main.go ├── compatibility-check │ ├── cmd │ │ └── check_contracts │ │ │ └── main.go │ ├── contracts_checker.go │ ├── contracts_checker_test.go │ ├── go.mod │ └── go.sum ├── constructorcheck │ ├── Makefile │ ├── analyzer.go │ ├── analyzer_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── testdata │ │ └── test.go ├── get-contracts │ ├── go.mod │ ├── go.sum │ └── main.go ├── go-apply-expr-diff │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── golangci-lint │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── maprange │ ├── Makefile │ ├── README.md │ ├── analyzer.go │ ├── analyzer_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── testdata │ │ └── src │ │ └── a │ │ └── test.go ├── pretty │ ├── README.md │ └── main.go ├── staged-contracts-report-printer │ ├── README.md │ └── main.go ├── storage-explorer │ ├── .gitignore │ ├── README.md │ ├── addresses.go │ ├── go.mod │ ├── go.sum │ ├── index.html │ ├── main.go │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── array.tsx │ │ ├── composite.tsx │ │ ├── dictionary.tsx │ │ ├── fallback.tsx │ │ ├── index.css │ │ ├── index.ts │ │ ├── primitive.tsx │ │ ├── type.module.css │ │ ├── type.tsx │ │ ├── value.ts │ │ └── vite-env.d.ts │ ├── storagemaps.go │ ├── tsconfig.json │ ├── type.go │ └── value.go ├── subtype-gen │ ├── README.md │ ├── constants.go │ ├── errors.go │ ├── expressions.go │ ├── generator.go │ ├── generator_test.go │ ├── predicates.go │ ├── rules.schema.json │ ├── rules.yaml │ ├── rules_parser.go │ ├── rules_parser_test.go │ ├── testdata │ │ ├── and_predicate_test.golden.go │ │ ├── and_predicate_test.yaml │ │ ├── complex_nested_and_or_test.golden.go │ │ ├── complex_nested_and_or_test.yaml │ │ ├── complex_nested_and_or_with_not_test.golden.go │ │ ├── complex_nested_and_or_with_not_test.yaml │ │ ├── complex_type_test.golden.go │ │ ├── complex_type_test.yaml │ │ ├── deep_equals_predicate_test.golden.go │ │ ├── deep_equals_predicate_test.yaml │ │ ├── deeply_nested_predicates_test.golden.go │ │ ├── deeply_nested_predicates_test.yaml │ │ ├── default_rule_test.golden.go │ │ ├── default_rule_test.yaml │ │ ├── equals_predicate_test.golden.go │ │ ├── equals_predicate_test.yaml │ │ ├── for_all_predicate_test.golden.go │ │ ├── for_all_predicate_test.yaml │ │ ├── is_attachment_predicate_test.golden.go │ │ ├── is_attachment_predicate_test.yaml │ │ ├── is_hashable_struct_predicate_test.golden.go │ │ ├── is_hashable_struct_predicate_test.yaml │ │ ├── is_intersection_subset_predicate_test.golden.go │ │ ├── is_intersection_subset_predicate_test.yaml │ │ ├── is_parameterized_subtype_predicate_test.golden.go │ │ ├── is_parameterized_subtype_predicate_test.yaml │ │ ├── is_resource_predicate_test.golden.go │ │ ├── is_resource_predicate_test.yaml │ │ ├── is_storable_predicate_test.golden.go │ │ ├── is_storable_predicate_test.yaml │ │ ├── must_type_predicate_test.golden.go │ │ ├── must_type_predicate_test.yaml │ │ ├── never_predicate_test.golden.go │ │ ├── never_predicate_test.yaml │ │ ├── not_predicate_test.golden.go │ │ ├── not_predicate_test.yaml │ │ ├── not_with_multiple_levels_test.golden.go │ │ ├── not_with_multiple_levels_test.yaml │ │ ├── oneof_expression_test.golden.go │ │ ├── oneof_expression_test.yaml │ │ ├── oneof_with_not_test.golden.go │ │ ├── oneof_with_not_test.yaml │ │ ├── or_predicate_test.golden.go │ │ ├── or_predicate_test.yaml │ │ ├── permits_predicate_test.golden.go │ │ ├── permits_predicate_test.yaml │ │ ├── return_covariant_predicate_test.golden.go │ │ ├── return_covariant_predicate_test.yaml │ │ ├── set_contains_predicate_test.golden.go │ │ ├── set_contains_predicate_test.yaml │ │ ├── simple_and_complex_type_test.golden.go │ │ ├── simple_and_complex_type_test.yaml │ │ ├── simple_type_test.golden.go │ │ ├── simple_type_test.yaml │ │ ├── subtype_predicate_test.golden.go │ │ └── subtype_predicate_test.yaml │ ├── types.go │ └── utils.go ├── unkeyed │ ├── Makefile │ ├── README.md │ ├── analyzer.go │ ├── analyzer_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── testdata │ │ └── src │ │ ├── a │ │ ├── a.go │ │ └── a.go.golden │ │ └── typeparams │ │ ├── lib │ │ └── lib.go │ │ ├── typeparams.go │ │ └── typeparams.go.golden └── update │ ├── .eslintrc.cjs │ ├── README.md │ ├── config.schema.json │ ├── config.schema.ts │ ├── config.yaml │ ├── main.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── types.go ├── types_test.go ├── utils └── version │ └── main.go ├── values.go ├── values ├── big.go ├── encode.go ├── errors.go ├── safe_math.go ├── value.go ├── value_bool.go ├── value_comparable.go ├── value_equatable.go ├── value_fixedpoint.go ├── value_int.go ├── value_integer.go ├── value_number.go └── value_ufix64.go ├── values_test.go └── version.go /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/compat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.github/workflows/compat.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @turbolent @SupunS @RZhang05 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/SECURITY.md -------------------------------------------------------------------------------- /activations/activations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/activations/activations.go -------------------------------------------------------------------------------- /activations/activations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/activations/activations_test.go -------------------------------------------------------------------------------- /ast/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/access.go -------------------------------------------------------------------------------- /ast/access_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/access_test.go -------------------------------------------------------------------------------- /ast/argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/argument.go -------------------------------------------------------------------------------- /ast/argument_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/argument_test.go -------------------------------------------------------------------------------- /ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/ast.go -------------------------------------------------------------------------------- /ast/attachment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/attachment.go -------------------------------------------------------------------------------- /ast/attachment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/attachment_test.go -------------------------------------------------------------------------------- /ast/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/block.go -------------------------------------------------------------------------------- /ast/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/block_test.go -------------------------------------------------------------------------------- /ast/composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/composite.go -------------------------------------------------------------------------------- /ast/composite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/composite_test.go -------------------------------------------------------------------------------- /ast/conditionkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/conditionkind.go -------------------------------------------------------------------------------- /ast/conditionkind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/conditionkind_string.go -------------------------------------------------------------------------------- /ast/conditionkind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/conditionkind_test.go -------------------------------------------------------------------------------- /ast/declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/declaration.go -------------------------------------------------------------------------------- /ast/elementtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/elementtype.go -------------------------------------------------------------------------------- /ast/elementtype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/elementtype_string.go -------------------------------------------------------------------------------- /ast/entitlement_declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/entitlement_declaration.go -------------------------------------------------------------------------------- /ast/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/expression.go -------------------------------------------------------------------------------- /ast/expression_as_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/expression_as_type.go -------------------------------------------------------------------------------- /ast/expression_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/expression_extractor.go -------------------------------------------------------------------------------- /ast/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/expression_test.go -------------------------------------------------------------------------------- /ast/function_declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/function_declaration.go -------------------------------------------------------------------------------- /ast/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/identifier.go -------------------------------------------------------------------------------- /ast/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/import.go -------------------------------------------------------------------------------- /ast/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/import_test.go -------------------------------------------------------------------------------- /ast/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/inspect.go -------------------------------------------------------------------------------- /ast/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/inspector.go -------------------------------------------------------------------------------- /ast/inspector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/inspector_test.go -------------------------------------------------------------------------------- /ast/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/interface.go -------------------------------------------------------------------------------- /ast/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/interface_test.go -------------------------------------------------------------------------------- /ast/memberindices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/memberindices.go -------------------------------------------------------------------------------- /ast/memberindices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/memberindices_test.go -------------------------------------------------------------------------------- /ast/members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/members.go -------------------------------------------------------------------------------- /ast/members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/members_test.go -------------------------------------------------------------------------------- /ast/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/operation.go -------------------------------------------------------------------------------- /ast/operation_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/operation_string.go -------------------------------------------------------------------------------- /ast/operation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/operation_test.go -------------------------------------------------------------------------------- /ast/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/parameter.go -------------------------------------------------------------------------------- /ast/parameter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/parameter_test.go -------------------------------------------------------------------------------- /ast/parameterlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/parameterlist.go -------------------------------------------------------------------------------- /ast/parameterlist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/parameterlist_test.go -------------------------------------------------------------------------------- /ast/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/position.go -------------------------------------------------------------------------------- /ast/position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/position_test.go -------------------------------------------------------------------------------- /ast/pragma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/pragma.go -------------------------------------------------------------------------------- /ast/pragma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/pragma_test.go -------------------------------------------------------------------------------- /ast/precedence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/precedence.go -------------------------------------------------------------------------------- /ast/precedence_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/precedence_string.go -------------------------------------------------------------------------------- /ast/prettier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/prettier.go -------------------------------------------------------------------------------- /ast/primitiveaccess_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/primitiveaccess_string.go -------------------------------------------------------------------------------- /ast/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/program.go -------------------------------------------------------------------------------- /ast/program_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/program_test.go -------------------------------------------------------------------------------- /ast/programindices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/programindices.go -------------------------------------------------------------------------------- /ast/programindices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/programindices_test.go -------------------------------------------------------------------------------- /ast/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/statement.go -------------------------------------------------------------------------------- /ast/statement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/statement_test.go -------------------------------------------------------------------------------- /ast/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/string.go -------------------------------------------------------------------------------- /ast/string_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/string_template_test.go -------------------------------------------------------------------------------- /ast/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/string_test.go -------------------------------------------------------------------------------- /ast/transaction_declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transaction_declaration.go -------------------------------------------------------------------------------- /ast/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transfer.go -------------------------------------------------------------------------------- /ast/transfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transfer_test.go -------------------------------------------------------------------------------- /ast/transferoperation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transferoperation.go -------------------------------------------------------------------------------- /ast/transferoperation_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transferoperation_string.go -------------------------------------------------------------------------------- /ast/transferoperation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/transferoperation_test.go -------------------------------------------------------------------------------- /ast/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/type.go -------------------------------------------------------------------------------- /ast/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/type_test.go -------------------------------------------------------------------------------- /ast/typeparameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/typeparameter.go -------------------------------------------------------------------------------- /ast/typeparameter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/typeparameter_test.go -------------------------------------------------------------------------------- /ast/typeparameterlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/typeparameterlist.go -------------------------------------------------------------------------------- /ast/typeparameterlist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/typeparameterlist_test.go -------------------------------------------------------------------------------- /ast/variable_declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/variable_declaration.go -------------------------------------------------------------------------------- /ast/variablekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/variablekind.go -------------------------------------------------------------------------------- /ast/variablekind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/variablekind_string.go -------------------------------------------------------------------------------- /ast/variablekind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/variablekind_test.go -------------------------------------------------------------------------------- /ast/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/visitor.go -------------------------------------------------------------------------------- /ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/ast/walk.go -------------------------------------------------------------------------------- /bbq/commons/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/commons/constants.go -------------------------------------------------------------------------------- /bbq/commons/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/commons/handlers.go -------------------------------------------------------------------------------- /bbq/commons/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/commons/types.go -------------------------------------------------------------------------------- /bbq/compiler/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/benchmark_test.go -------------------------------------------------------------------------------- /bbq/compiler/builtin_globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/builtin_globals.go -------------------------------------------------------------------------------- /bbq/compiler/codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/codegen.go -------------------------------------------------------------------------------- /bbq/compiler/codegen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/codegen_test.go -------------------------------------------------------------------------------- /bbq/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/compiler.go -------------------------------------------------------------------------------- /bbq/compiler/compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/compiler_test.go -------------------------------------------------------------------------------- /bbq/compiler/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/config.go -------------------------------------------------------------------------------- /bbq/compiler/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/constant.go -------------------------------------------------------------------------------- /bbq/compiler/control_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/control_flow.go -------------------------------------------------------------------------------- /bbq/compiler/desugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/desugar.go -------------------------------------------------------------------------------- /bbq/compiler/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/function.go -------------------------------------------------------------------------------- /bbq/compiler/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/global_variable.go -------------------------------------------------------------------------------- /bbq/compiler/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/local.go -------------------------------------------------------------------------------- /bbq/compiler/peephole_pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/peephole_pass.go -------------------------------------------------------------------------------- /bbq/compiler/returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/returns.go -------------------------------------------------------------------------------- /bbq/compiler/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/stack.go -------------------------------------------------------------------------------- /bbq/compiler/typegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/compiler/typegen.go -------------------------------------------------------------------------------- /bbq/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/constant/constant.go -------------------------------------------------------------------------------- /bbq/constant/kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/constant/kind.go -------------------------------------------------------------------------------- /bbq/constant/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/constant/kind_string.go -------------------------------------------------------------------------------- /bbq/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/contract.go -------------------------------------------------------------------------------- /bbq/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/function.go -------------------------------------------------------------------------------- /bbq/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/global.go -------------------------------------------------------------------------------- /bbq/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/import.go -------------------------------------------------------------------------------- /bbq/leb128/leb128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/leb128/leb128.go -------------------------------------------------------------------------------- /bbq/leb128/leb128_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/leb128/leb128_test.go -------------------------------------------------------------------------------- /bbq/line_number_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/line_number_table.go -------------------------------------------------------------------------------- /bbq/opcode/gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/gen/main.go -------------------------------------------------------------------------------- /bbq/opcode/instruction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/instruction.go -------------------------------------------------------------------------------- /bbq/opcode/instruction_jump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/instruction_jump.go -------------------------------------------------------------------------------- /bbq/opcode/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/instructions.go -------------------------------------------------------------------------------- /bbq/opcode/instructions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/instructions.yml -------------------------------------------------------------------------------- /bbq/opcode/opcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/opcode.go -------------------------------------------------------------------------------- /bbq/opcode/opcode_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/opcode_flow.go -------------------------------------------------------------------------------- /bbq/opcode/opcode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/opcode_string.go -------------------------------------------------------------------------------- /bbq/opcode/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/print.go -------------------------------------------------------------------------------- /bbq/opcode/print_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/print_test.go -------------------------------------------------------------------------------- /bbq/opcode/upvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/opcode/upvalue.go -------------------------------------------------------------------------------- /bbq/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/program.go -------------------------------------------------------------------------------- /bbq/program_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/program_printer.go -------------------------------------------------------------------------------- /bbq/statictype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/statictype.go -------------------------------------------------------------------------------- /bbq/test_utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/test_utils/utils.go -------------------------------------------------------------------------------- /bbq/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/variable.go -------------------------------------------------------------------------------- /bbq/vm/builtin_globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/builtin_globals.go -------------------------------------------------------------------------------- /bbq/vm/callframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/callframe.go -------------------------------------------------------------------------------- /bbq/vm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/config.go -------------------------------------------------------------------------------- /bbq/vm/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/context.go -------------------------------------------------------------------------------- /bbq/vm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/errors.go -------------------------------------------------------------------------------- /bbq/vm/executable_program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/executable_program.go -------------------------------------------------------------------------------- /bbq/vm/linker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/linker.go -------------------------------------------------------------------------------- /bbq/vm/native_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/native_function.go -------------------------------------------------------------------------------- /bbq/vm/reference_tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/reference_tracking.go -------------------------------------------------------------------------------- /bbq/vm/test/ft_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/test/ft_test.go -------------------------------------------------------------------------------- /bbq/vm/test/interpreter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/test/interpreter_test.go -------------------------------------------------------------------------------- /bbq/vm/test/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/test/utils.go -------------------------------------------------------------------------------- /bbq/vm/test/vm_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/test/vm_bench_test.go -------------------------------------------------------------------------------- /bbq/vm/test/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/test/vm_test.go -------------------------------------------------------------------------------- /bbq/vm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/types.go -------------------------------------------------------------------------------- /bbq/vm/upvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/upvalue.go -------------------------------------------------------------------------------- /bbq/vm/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value.go -------------------------------------------------------------------------------- /bbq/vm/value_account_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_account_storage.go -------------------------------------------------------------------------------- /bbq/vm/value_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_address.go -------------------------------------------------------------------------------- /bbq/vm/value_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_array.go -------------------------------------------------------------------------------- /bbq/vm/value_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_capability.go -------------------------------------------------------------------------------- /bbq/vm/value_character.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_character.go -------------------------------------------------------------------------------- /bbq/vm/value_composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_composite.go -------------------------------------------------------------------------------- /bbq/vm/value_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_dictionary.go -------------------------------------------------------------------------------- /bbq/vm/value_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_function.go -------------------------------------------------------------------------------- /bbq/vm/value_inclusiverange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_inclusiverange.go -------------------------------------------------------------------------------- /bbq/vm/value_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_int.go -------------------------------------------------------------------------------- /bbq/vm/value_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_iterator.go -------------------------------------------------------------------------------- /bbq/vm/value_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_number.go -------------------------------------------------------------------------------- /bbq/vm/value_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_optional.go -------------------------------------------------------------------------------- /bbq/vm/value_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_path.go -------------------------------------------------------------------------------- /bbq/vm/value_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_string.go -------------------------------------------------------------------------------- /bbq/vm/value_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_type.go -------------------------------------------------------------------------------- /bbq/vm/value_ufix64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_ufix64.go -------------------------------------------------------------------------------- /bbq/vm/value_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/value_uint64.go -------------------------------------------------------------------------------- /bbq/vm/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/vm.go -------------------------------------------------------------------------------- /bbq/vm/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bbq/vm/vm_test.go -------------------------------------------------------------------------------- /benchmarks/binarytrees.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/benchmarks/binarytrees.cdc -------------------------------------------------------------------------------- /benchmarks/fannkuch.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/benchmarks/fannkuch.cdc -------------------------------------------------------------------------------- /benchmarks/fib_dynamic.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/benchmarks/fib_dynamic.cdc -------------------------------------------------------------------------------- /benchmarks/fib_iterative.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/benchmarks/fib_iterative.cdc -------------------------------------------------------------------------------- /benchmarks/fib_recursive.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/benchmarks/fib_recursive.cdc -------------------------------------------------------------------------------- /bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/bump-version.sh -------------------------------------------------------------------------------- /cadence_furever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cadence_furever.png -------------------------------------------------------------------------------- /check-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/check-headers.sh -------------------------------------------------------------------------------- /cmd/check/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/check/main.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/decode-slab/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/decode-slab/main.go -------------------------------------------------------------------------------- /cmd/decode-state-values/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/decode-state-values/main.go -------------------------------------------------------------------------------- /cmd/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/errors/README.md -------------------------------------------------------------------------------- /cmd/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/errors/errors.go -------------------------------------------------------------------------------- /cmd/errors/gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/errors/gen/main.go -------------------------------------------------------------------------------- /cmd/errors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/errors/main.go -------------------------------------------------------------------------------- /cmd/errors/placeholders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/errors/placeholders.go -------------------------------------------------------------------------------- /cmd/execute/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/execute/colors.go -------------------------------------------------------------------------------- /cmd/execute/debugger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/execute/debugger.go -------------------------------------------------------------------------------- /cmd/execute/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/execute/execute.go -------------------------------------------------------------------------------- /cmd/execute/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/execute/repl.go -------------------------------------------------------------------------------- /cmd/info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/info/README.md -------------------------------------------------------------------------------- /cmd/info/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/info/main.go -------------------------------------------------------------------------------- /cmd/json-cdc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/json-cdc/main.go -------------------------------------------------------------------------------- /cmd/lex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/lex/main.go -------------------------------------------------------------------------------- /cmd/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/main/main.go -------------------------------------------------------------------------------- /cmd/minifier/minifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/minifier/minifier.go -------------------------------------------------------------------------------- /cmd/minifier/minifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/minifier/minifier_test.go -------------------------------------------------------------------------------- /cmd/parse/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/parse/main.go -------------------------------------------------------------------------------- /cmd/parse/main_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/cmd/parse/main_wasm.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/codecov.yml -------------------------------------------------------------------------------- /common/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/address.go -------------------------------------------------------------------------------- /common/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/address_test.go -------------------------------------------------------------------------------- /common/addresslocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/addresslocation.go -------------------------------------------------------------------------------- /common/addresslocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/addresslocation_test.go -------------------------------------------------------------------------------- /common/bigint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/bigint.go -------------------------------------------------------------------------------- /common/bigint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/bigint_test.go -------------------------------------------------------------------------------- /common/bimap/bimap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/bimap/bimap.go -------------------------------------------------------------------------------- /common/bimap/bimap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/bimap/bimap_test.go -------------------------------------------------------------------------------- /common/compositekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/compositekind.go -------------------------------------------------------------------------------- /common/compositekind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/compositekind_string.go -------------------------------------------------------------------------------- /common/compositekind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/compositekind_test.go -------------------------------------------------------------------------------- /common/computationkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/computationkind.go -------------------------------------------------------------------------------- /common/concat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/concat.go -------------------------------------------------------------------------------- /common/controlstatement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/controlstatement.go -------------------------------------------------------------------------------- /common/declarationkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/declarationkind.go -------------------------------------------------------------------------------- /common/declarationkind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/declarationkind_test.go -------------------------------------------------------------------------------- /common/deps/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/deps/node.go -------------------------------------------------------------------------------- /common/deps/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/deps/node_test.go -------------------------------------------------------------------------------- /common/deps/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/deps/set.go -------------------------------------------------------------------------------- /common/enumerate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/enumerate.go -------------------------------------------------------------------------------- /common/equatable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/equatable.go -------------------------------------------------------------------------------- /common/identifierlocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/identifierlocation.go -------------------------------------------------------------------------------- /common/incomparable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/incomparable.go -------------------------------------------------------------------------------- /common/integerliteralkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/integerliteralkind.go -------------------------------------------------------------------------------- /common/intervalst/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/intervalst/interval.go -------------------------------------------------------------------------------- /common/intervalst/intervalst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/intervalst/intervalst.go -------------------------------------------------------------------------------- /common/intervalst/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/intervalst/node.go -------------------------------------------------------------------------------- /common/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/list/list.go -------------------------------------------------------------------------------- /common/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/location.go -------------------------------------------------------------------------------- /common/location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/location_test.go -------------------------------------------------------------------------------- /common/memorykind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/memorykind.go -------------------------------------------------------------------------------- /common/memorykind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/memorykind_string.go -------------------------------------------------------------------------------- /common/metering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/metering.go -------------------------------------------------------------------------------- /common/operandside.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/operandside.go -------------------------------------------------------------------------------- /common/operandside_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/operandside_string.go -------------------------------------------------------------------------------- /common/operationkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/operationkind.go -------------------------------------------------------------------------------- /common/operationkind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/operationkind_string.go -------------------------------------------------------------------------------- /common/orderedmap/orderedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/orderedmap/orderedmap.go -------------------------------------------------------------------------------- /common/pathdomain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/pathdomain.go -------------------------------------------------------------------------------- /common/pathdomain_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/pathdomain_string.go -------------------------------------------------------------------------------- /common/persistent/orderedset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/persistent/orderedset.go -------------------------------------------------------------------------------- /common/repllocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/repllocation.go -------------------------------------------------------------------------------- /common/repllocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/repllocation_test.go -------------------------------------------------------------------------------- /common/scriptlocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/scriptlocation.go -------------------------------------------------------------------------------- /common/scriptlocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/scriptlocation_test.go -------------------------------------------------------------------------------- /common/slice_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/slice_utils.go -------------------------------------------------------------------------------- /common/slice_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/slice_utils_test.go -------------------------------------------------------------------------------- /common/storagedomain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/storagedomain.go -------------------------------------------------------------------------------- /common/stringlocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/stringlocation.go -------------------------------------------------------------------------------- /common/stringlocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/stringlocation_test.go -------------------------------------------------------------------------------- /common/transactionlocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/common/transactionlocation.go -------------------------------------------------------------------------------- /compat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/README.md -------------------------------------------------------------------------------- /compat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/main.py -------------------------------------------------------------------------------- /compat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/requirements.txt -------------------------------------------------------------------------------- /compat/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/setup.md -------------------------------------------------------------------------------- /compat/suite/flow-ft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/suite/flow-ft.yaml -------------------------------------------------------------------------------- /compat/suite/flow-nft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/compat/suite/flow-nft.yaml -------------------------------------------------------------------------------- /docs/Cadence Implementation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/Cadence Implementation.odp -------------------------------------------------------------------------------- /docs/Cadence Implementation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/Cadence Implementation.pdf -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/anti-patterns.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/anti-patterns.mdx -------------------------------------------------------------------------------- /docs/architecture.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/architecture.monopic -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /docs/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/architecture.svg -------------------------------------------------------------------------------- /docs/cadence.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/cadence.ebnf -------------------------------------------------------------------------------- /docs/contract-upgrades.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/contract-upgrades.mdx -------------------------------------------------------------------------------- /docs/design-patterns.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/design-patterns.mdx -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/go.md -------------------------------------------------------------------------------- /docs/goland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/goland.md -------------------------------------------------------------------------------- /docs/images/create_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/images/create_release.png -------------------------------------------------------------------------------- /docs/images/release_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/images/release_action.png -------------------------------------------------------------------------------- /docs/images/release_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/images/release_tag.png -------------------------------------------------------------------------------- /docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/index.mdx -------------------------------------------------------------------------------- /docs/json-cadence-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/json-cadence-spec.md -------------------------------------------------------------------------------- /docs/language/access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/access-control.md -------------------------------------------------------------------------------- /docs/language/accounts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/accounts.mdx -------------------------------------------------------------------------------- /docs/language/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/attachments.md -------------------------------------------------------------------------------- /docs/language/contracts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/contracts.mdx -------------------------------------------------------------------------------- /docs/language/control-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/control-flow.md -------------------------------------------------------------------------------- /docs/language/core-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/core-events.md -------------------------------------------------------------------------------- /docs/language/crypto.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/crypto.mdx -------------------------------------------------------------------------------- /docs/language/enumerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/enumerations.md -------------------------------------------------------------------------------- /docs/language/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/events.md -------------------------------------------------------------------------------- /docs/language/functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/functions.mdx -------------------------------------------------------------------------------- /docs/language/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/glossary.md -------------------------------------------------------------------------------- /docs/language/imports.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/imports.mdx -------------------------------------------------------------------------------- /docs/language/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/index.md -------------------------------------------------------------------------------- /docs/language/interfaces.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/interfaces.mdx -------------------------------------------------------------------------------- /docs/language/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/operators.md -------------------------------------------------------------------------------- /docs/language/references.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/references.mdx -------------------------------------------------------------------------------- /docs/language/resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/resources.mdx -------------------------------------------------------------------------------- /docs/language/run-time-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/run-time-types.md -------------------------------------------------------------------------------- /docs/language/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/scope.md -------------------------------------------------------------------------------- /docs/language/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/syntax.md -------------------------------------------------------------------------------- /docs/language/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/transactions.md -------------------------------------------------------------------------------- /docs/language/type-hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/type-hierarchy.md -------------------------------------------------------------------------------- /docs/language/type-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/type-inference.md -------------------------------------------------------------------------------- /docs/language/type-safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/language/type-safety.md -------------------------------------------------------------------------------- /docs/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/lint.js -------------------------------------------------------------------------------- /docs/measuring-time.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/measuring-time.mdx -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /docs/solidity-to-cadence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/solidity-to-cadence.mdx -------------------------------------------------------------------------------- /docs/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/syntax-highlighting.md -------------------------------------------------------------------------------- /docs/syntax/Cadence.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/syntax/Cadence.syntax -------------------------------------------------------------------------------- /docs/syntax/Syntax Notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/syntax/Syntax Notation.md -------------------------------------------------------------------------------- /docs/testing-framework.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/testing-framework.mdx -------------------------------------------------------------------------------- /docs/tutorial/03-resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/tutorial/03-resources.mdx -------------------------------------------------------------------------------- /docs/tutorial/09-voting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/tutorial/09-voting.mdx -------------------------------------------------------------------------------- /docs/tutorial/deploybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/tutorial/deploybox.png -------------------------------------------------------------------------------- /docs/tutorial/txbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/tutorial/txbox.png -------------------------------------------------------------------------------- /docs/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/docs/why.md -------------------------------------------------------------------------------- /encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/README.md -------------------------------------------------------------------------------- /encoding/ccf/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/bench_test.go -------------------------------------------------------------------------------- /encoding/ccf/ccf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/ccf.go -------------------------------------------------------------------------------- /encoding/ccf/ccf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/ccf_test.go -------------------------------------------------------------------------------- /encoding/ccf/ccf_type_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/ccf_type_id.go -------------------------------------------------------------------------------- /encoding/ccf/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/consts.go -------------------------------------------------------------------------------- /encoding/ccf/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/decode.go -------------------------------------------------------------------------------- /encoding/ccf/decode_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/decode_type.go -------------------------------------------------------------------------------- /encoding/ccf/decode_typedef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/decode_typedef.go -------------------------------------------------------------------------------- /encoding/ccf/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/encode.go -------------------------------------------------------------------------------- /encoding/ccf/encode_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/encode_type.go -------------------------------------------------------------------------------- /encoding/ccf/encode_typedef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/encode_typedef.go -------------------------------------------------------------------------------- /encoding/ccf/simpletype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/simpletype.go -------------------------------------------------------------------------------- /encoding/ccf/simpletype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/simpletype_test.go -------------------------------------------------------------------------------- /encoding/ccf/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/sort.go -------------------------------------------------------------------------------- /encoding/ccf/traverse_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/ccf/traverse_value.go -------------------------------------------------------------------------------- /encoding/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/json/decode.go -------------------------------------------------------------------------------- /encoding/json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/json/encode.go -------------------------------------------------------------------------------- /encoding/json/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/json/encoding_test.go -------------------------------------------------------------------------------- /encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/encoding/json/json.go -------------------------------------------------------------------------------- /errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/errors/errors.go -------------------------------------------------------------------------------- /errors/wrappanic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/errors/wrappanic.go -------------------------------------------------------------------------------- /examples/quicksort.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/examples/quicksort.cdc -------------------------------------------------------------------------------- /fixedpoint/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/check.go -------------------------------------------------------------------------------- /fixedpoint/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/convert.go -------------------------------------------------------------------------------- /fixedpoint/fixedpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/fixedpoint.go -------------------------------------------------------------------------------- /fixedpoint/fixedpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/fixedpoint_test.go -------------------------------------------------------------------------------- /fixedpoint/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/parse.go -------------------------------------------------------------------------------- /fixedpoint/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fixedpoint/parse_test.go -------------------------------------------------------------------------------- /format/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/address.go -------------------------------------------------------------------------------- /format/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/array.go -------------------------------------------------------------------------------- /format/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/bool.go -------------------------------------------------------------------------------- /format/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/bytes.go -------------------------------------------------------------------------------- /format/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/bytes_test.go -------------------------------------------------------------------------------- /format/capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/capability.go -------------------------------------------------------------------------------- /format/composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/composite.go -------------------------------------------------------------------------------- /format/dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/dictionary.go -------------------------------------------------------------------------------- /format/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/fix.go -------------------------------------------------------------------------------- /format/fix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/fix_test.go -------------------------------------------------------------------------------- /format/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/int.go -------------------------------------------------------------------------------- /format/nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/nil.go -------------------------------------------------------------------------------- /format/pad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/pad.go -------------------------------------------------------------------------------- /format/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/path.go -------------------------------------------------------------------------------- /format/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/reference.go -------------------------------------------------------------------------------- /format/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/string.go -------------------------------------------------------------------------------- /format/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/type.go -------------------------------------------------------------------------------- /format/void.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/format/void.go -------------------------------------------------------------------------------- /fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fuzz.go -------------------------------------------------------------------------------- /fuzz/crashers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/fuzz/crashers_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/go.sum -------------------------------------------------------------------------------- /integer/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/integer/integer.go -------------------------------------------------------------------------------- /interpreter/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/account_test.go -------------------------------------------------------------------------------- /interpreter/arithmetic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/arithmetic_test.go -------------------------------------------------------------------------------- /interpreter/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/array_test.go -------------------------------------------------------------------------------- /interpreter/attachments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/attachments_test.go -------------------------------------------------------------------------------- /interpreter/bitwise_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/bitwise_test.go -------------------------------------------------------------------------------- /interpreter/character_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/character_test.go -------------------------------------------------------------------------------- /interpreter/condition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/condition_test.go -------------------------------------------------------------------------------- /interpreter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/config.go -------------------------------------------------------------------------------- /interpreter/contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/contract_test.go -------------------------------------------------------------------------------- /interpreter/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/conversion.go -------------------------------------------------------------------------------- /interpreter/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/conversion_test.go -------------------------------------------------------------------------------- /interpreter/debugger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/debugger.go -------------------------------------------------------------------------------- /interpreter/declaration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/declaration_test.go -------------------------------------------------------------------------------- /interpreter/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/decode.go -------------------------------------------------------------------------------- /interpreter/dictionary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/dictionary_test.go -------------------------------------------------------------------------------- /interpreter/div_mod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/div_mod_test.go -------------------------------------------------------------------------------- /interpreter/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/encode.go -------------------------------------------------------------------------------- /interpreter/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/encoding_test.go -------------------------------------------------------------------------------- /interpreter/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/enum_test.go -------------------------------------------------------------------------------- /interpreter/equality_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/equality_test.go -------------------------------------------------------------------------------- /interpreter/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/errors.go -------------------------------------------------------------------------------- /interpreter/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/errors_test.go -------------------------------------------------------------------------------- /interpreter/fib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/fib_test.go -------------------------------------------------------------------------------- /interpreter/fixedpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/fixedpoint_test.go -------------------------------------------------------------------------------- /interpreter/for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/for_test.go -------------------------------------------------------------------------------- /interpreter/function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/function_test.go -------------------------------------------------------------------------------- /interpreter/globalvariables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/globalvariables.go -------------------------------------------------------------------------------- /interpreter/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/handlers_test.go -------------------------------------------------------------------------------- /interpreter/hashablevalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/hashablevalue.go -------------------------------------------------------------------------------- /interpreter/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/if_test.go -------------------------------------------------------------------------------- /interpreter/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/import.go -------------------------------------------------------------------------------- /interpreter/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/import_test.go -------------------------------------------------------------------------------- /interpreter/indexing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/indexing_test.go -------------------------------------------------------------------------------- /interpreter/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/inspect.go -------------------------------------------------------------------------------- /interpreter/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/inspect_test.go -------------------------------------------------------------------------------- /interpreter/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/integer.go -------------------------------------------------------------------------------- /interpreter/integers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/integers_test.go -------------------------------------------------------------------------------- /interpreter/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/interface.go -------------------------------------------------------------------------------- /interpreter/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/interface_test.go -------------------------------------------------------------------------------- /interpreter/interpreter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/interpreter.go -------------------------------------------------------------------------------- /interpreter/interpreter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/interpreter_test.go -------------------------------------------------------------------------------- /interpreter/invocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/invocation.go -------------------------------------------------------------------------------- /interpreter/invocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/invocation_test.go -------------------------------------------------------------------------------- /interpreter/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/location.go -------------------------------------------------------------------------------- /interpreter/location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/location_test.go -------------------------------------------------------------------------------- /interpreter/member_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/member_test.go -------------------------------------------------------------------------------- /interpreter/metatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/metatype_test.go -------------------------------------------------------------------------------- /interpreter/minus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/minus_test.go -------------------------------------------------------------------------------- /interpreter/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/misc_test.go -------------------------------------------------------------------------------- /interpreter/mul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/mul_test.go -------------------------------------------------------------------------------- /interpreter/native_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/native_function.go -------------------------------------------------------------------------------- /interpreter/negate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/negate_test.go -------------------------------------------------------------------------------- /interpreter/nesting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/nesting_test.go -------------------------------------------------------------------------------- /interpreter/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/number.go -------------------------------------------------------------------------------- /interpreter/number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/number_test.go -------------------------------------------------------------------------------- /interpreter/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/path_test.go -------------------------------------------------------------------------------- /interpreter/plus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/plus_test.go -------------------------------------------------------------------------------- /interpreter/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/program.go -------------------------------------------------------------------------------- /interpreter/range_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/range_value_test.go -------------------------------------------------------------------------------- /interpreter/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/reference_test.go -------------------------------------------------------------------------------- /interpreter/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/resources_test.go -------------------------------------------------------------------------------- /interpreter/runtimetype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/runtimetype_test.go -------------------------------------------------------------------------------- /interpreter/sharedstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/sharedstate.go -------------------------------------------------------------------------------- /interpreter/statementresult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/statementresult.go -------------------------------------------------------------------------------- /interpreter/statictype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/statictype.go -------------------------------------------------------------------------------- /interpreter/statictype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/statictype_test.go -------------------------------------------------------------------------------- /interpreter/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/storage.go -------------------------------------------------------------------------------- /interpreter/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/storage_test.go -------------------------------------------------------------------------------- /interpreter/storagemapkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/storagemapkey.go -------------------------------------------------------------------------------- /interpreter/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/string_test.go -------------------------------------------------------------------------------- /interpreter/stringatreevalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/stringatreevalue.go -------------------------------------------------------------------------------- /interpreter/subtype_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/subtype_check.go -------------------------------------------------------------------------------- /interpreter/switch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/switch_test.go -------------------------------------------------------------------------------- /interpreter/tracing_disabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/tracing_disabled.go -------------------------------------------------------------------------------- /interpreter/tracing_enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/tracing_enabled.go -------------------------------------------------------------------------------- /interpreter/transfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/transfer_test.go -------------------------------------------------------------------------------- /interpreter/uint64atreevalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/uint64atreevalue.go -------------------------------------------------------------------------------- /interpreter/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/uuid_test.go -------------------------------------------------------------------------------- /interpreter/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value.go -------------------------------------------------------------------------------- /interpreter/value_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_account.go -------------------------------------------------------------------------------- /interpreter/value_accountkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_accountkey.go -------------------------------------------------------------------------------- /interpreter/value_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_address.go -------------------------------------------------------------------------------- /interpreter/value_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_array.go -------------------------------------------------------------------------------- /interpreter/value_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_block.go -------------------------------------------------------------------------------- /interpreter/value_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_bool.go -------------------------------------------------------------------------------- /interpreter/value_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_capability.go -------------------------------------------------------------------------------- /interpreter/value_character.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_character.go -------------------------------------------------------------------------------- /interpreter/value_composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_composite.go -------------------------------------------------------------------------------- /interpreter/value_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_dictionary.go -------------------------------------------------------------------------------- /interpreter/value_fix128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_fix128.go -------------------------------------------------------------------------------- /interpreter/value_fix64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_fix64.go -------------------------------------------------------------------------------- /interpreter/value_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_function.go -------------------------------------------------------------------------------- /interpreter/value_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int.go -------------------------------------------------------------------------------- /interpreter/value_int128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int128.go -------------------------------------------------------------------------------- /interpreter/value_int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int16.go -------------------------------------------------------------------------------- /interpreter/value_int256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int256.go -------------------------------------------------------------------------------- /interpreter/value_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int32.go -------------------------------------------------------------------------------- /interpreter/value_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int64.go -------------------------------------------------------------------------------- /interpreter/value_int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_int8.go -------------------------------------------------------------------------------- /interpreter/value_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_link.go -------------------------------------------------------------------------------- /interpreter/value_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_nil.go -------------------------------------------------------------------------------- /interpreter/value_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_number.go -------------------------------------------------------------------------------- /interpreter/value_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_optional.go -------------------------------------------------------------------------------- /interpreter/value_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_path.go -------------------------------------------------------------------------------- /interpreter/value_publickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_publickey.go -------------------------------------------------------------------------------- /interpreter/value_published.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_published.go -------------------------------------------------------------------------------- /interpreter/value_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_range.go -------------------------------------------------------------------------------- /interpreter/value_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_reference.go -------------------------------------------------------------------------------- /interpreter/value_some.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_some.go -------------------------------------------------------------------------------- /interpreter/value_some_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_some_test.go -------------------------------------------------------------------------------- /interpreter/value_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_string.go -------------------------------------------------------------------------------- /interpreter/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_test.go -------------------------------------------------------------------------------- /interpreter/value_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_type.go -------------------------------------------------------------------------------- /interpreter/value_ufix128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_ufix128.go -------------------------------------------------------------------------------- /interpreter/value_ufix64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_ufix64.go -------------------------------------------------------------------------------- /interpreter/value_uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint.go -------------------------------------------------------------------------------- /interpreter/value_uint128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint128.go -------------------------------------------------------------------------------- /interpreter/value_uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint16.go -------------------------------------------------------------------------------- /interpreter/value_uint256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint256.go -------------------------------------------------------------------------------- /interpreter/value_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint32.go -------------------------------------------------------------------------------- /interpreter/value_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint64.go -------------------------------------------------------------------------------- /interpreter/value_uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_uint8.go -------------------------------------------------------------------------------- /interpreter/value_void.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_void.go -------------------------------------------------------------------------------- /interpreter/value_word128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word128.go -------------------------------------------------------------------------------- /interpreter/value_word16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word16.go -------------------------------------------------------------------------------- /interpreter/value_word256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word256.go -------------------------------------------------------------------------------- /interpreter/value_word32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word32.go -------------------------------------------------------------------------------- /interpreter/value_word64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word64.go -------------------------------------------------------------------------------- /interpreter/value_word8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/value_word8.go -------------------------------------------------------------------------------- /interpreter/valuedeclaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/valuedeclaration.go -------------------------------------------------------------------------------- /interpreter/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/values_test.go -------------------------------------------------------------------------------- /interpreter/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/variable.go -------------------------------------------------------------------------------- /interpreter/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/visitor.go -------------------------------------------------------------------------------- /interpreter/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/walk.go -------------------------------------------------------------------------------- /interpreter/while_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/interpreter/while_test.go -------------------------------------------------------------------------------- /meetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/meetings/README.md -------------------------------------------------------------------------------- /npm-packages/cadence-parser/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /npm-packages/monaco-languageclient-cadence/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /old_parser/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/benchmark_test.go -------------------------------------------------------------------------------- /old_parser/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/comment.go -------------------------------------------------------------------------------- /old_parser/declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/declaration.go -------------------------------------------------------------------------------- /old_parser/declaration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/declaration_test.go -------------------------------------------------------------------------------- /old_parser/docstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/docstring.go -------------------------------------------------------------------------------- /old_parser/docstring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/docstring_test.go -------------------------------------------------------------------------------- /old_parser/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/errors.go -------------------------------------------------------------------------------- /old_parser/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/expression.go -------------------------------------------------------------------------------- /old_parser/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/expression_test.go -------------------------------------------------------------------------------- /old_parser/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/function.go -------------------------------------------------------------------------------- /old_parser/keyword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/keyword.go -------------------------------------------------------------------------------- /old_parser/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/lexer.go -------------------------------------------------------------------------------- /old_parser/lexer/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/lexer_test.go -------------------------------------------------------------------------------- /old_parser/lexer/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/state.go -------------------------------------------------------------------------------- /old_parser/lexer/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/token.go -------------------------------------------------------------------------------- /old_parser/lexer/tokenstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/tokenstream.go -------------------------------------------------------------------------------- /old_parser/lexer/tokentype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/lexer/tokentype.go -------------------------------------------------------------------------------- /old_parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/parser.go -------------------------------------------------------------------------------- /old_parser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/parser_test.go -------------------------------------------------------------------------------- /old_parser/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/statement.go -------------------------------------------------------------------------------- /old_parser/statement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/statement_test.go -------------------------------------------------------------------------------- /old_parser/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/transaction.go -------------------------------------------------------------------------------- /old_parser/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/type.go -------------------------------------------------------------------------------- /old_parser/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/old_parser/type_test.go -------------------------------------------------------------------------------- /parser/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/benchmark_test.go -------------------------------------------------------------------------------- /parser/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/comment.go -------------------------------------------------------------------------------- /parser/comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/comment_test.go -------------------------------------------------------------------------------- /parser/declaration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/declaration.go -------------------------------------------------------------------------------- /parser/declaration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/declaration_test.go -------------------------------------------------------------------------------- /parser/docstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/docstring.go -------------------------------------------------------------------------------- /parser/docstring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/docstring_test.go -------------------------------------------------------------------------------- /parser/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/errors.go -------------------------------------------------------------------------------- /parser/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/expression.go -------------------------------------------------------------------------------- /parser/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/expression_test.go -------------------------------------------------------------------------------- /parser/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/function.go -------------------------------------------------------------------------------- /parser/keyword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/keyword.go -------------------------------------------------------------------------------- /parser/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/lexer.go -------------------------------------------------------------------------------- /parser/lexer/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/lexer_test.go -------------------------------------------------------------------------------- /parser/lexer/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/state.go -------------------------------------------------------------------------------- /parser/lexer/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/token.go -------------------------------------------------------------------------------- /parser/lexer/tokenstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/tokenstream.go -------------------------------------------------------------------------------- /parser/lexer/tokentype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/lexer/tokentype.go -------------------------------------------------------------------------------- /parser/memory_metering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/memory_metering_test.go -------------------------------------------------------------------------------- /parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/parser.go -------------------------------------------------------------------------------- /parser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/parser_test.go -------------------------------------------------------------------------------- /parser/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/statement.go -------------------------------------------------------------------------------- /parser/statement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/statement_test.go -------------------------------------------------------------------------------- /parser/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/transaction.go -------------------------------------------------------------------------------- /parser/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/type.go -------------------------------------------------------------------------------- /parser/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/parser/type_test.go -------------------------------------------------------------------------------- /pretty/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/pretty/print.go -------------------------------------------------------------------------------- /pretty/print_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/pretty/print_test.go -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /flow-runtime 3 | -------------------------------------------------------------------------------- /runtime/account_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/account_storage.go -------------------------------------------------------------------------------- /runtime/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/account_test.go -------------------------------------------------------------------------------- /runtime/attachments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/attachments_test.go -------------------------------------------------------------------------------- /runtime/authorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/authorizer.go -------------------------------------------------------------------------------- /runtime/capabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/capabilities_test.go -------------------------------------------------------------------------------- /runtime/checking_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/checking_environment.go -------------------------------------------------------------------------------- /runtime/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/code.go -------------------------------------------------------------------------------- /runtime/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/config.go -------------------------------------------------------------------------------- /runtime/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/context.go -------------------------------------------------------------------------------- /runtime/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/contract.go -------------------------------------------------------------------------------- /runtime/contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/contract_test.go -------------------------------------------------------------------------------- /runtime/contract_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/contract_update_test.go -------------------------------------------------------------------------------- /runtime/convertTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/convertTypes.go -------------------------------------------------------------------------------- /runtime/convertTypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/convertTypes_test.go -------------------------------------------------------------------------------- /runtime/convertValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/convertValues.go -------------------------------------------------------------------------------- /runtime/convertValues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/convertValues_test.go -------------------------------------------------------------------------------- /runtime/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/coverage.go -------------------------------------------------------------------------------- /runtime/coverage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/coverage_test.go -------------------------------------------------------------------------------- /runtime/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/crypto_test.go -------------------------------------------------------------------------------- /runtime/debugger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/debugger_test.go -------------------------------------------------------------------------------- /runtime/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/deployment_test.go -------------------------------------------------------------------------------- /runtime/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/empty.go -------------------------------------------------------------------------------- /runtime/entitlements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/entitlements_test.go -------------------------------------------------------------------------------- /runtime/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/environment.go -------------------------------------------------------------------------------- /runtime/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/error_test.go -------------------------------------------------------------------------------- /runtime/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/errors.go -------------------------------------------------------------------------------- /runtime/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/errors_test.go -------------------------------------------------------------------------------- /runtime/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/events.go -------------------------------------------------------------------------------- /runtime/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/executor.go -------------------------------------------------------------------------------- /runtime/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/external.go -------------------------------------------------------------------------------- /runtime/ft_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/ft_test.go -------------------------------------------------------------------------------- /runtime/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/handlers.go -------------------------------------------------------------------------------- /runtime/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/import_test.go -------------------------------------------------------------------------------- /runtime/inbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/inbox_test.go -------------------------------------------------------------------------------- /runtime/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/interface.go -------------------------------------------------------------------------------- /runtime/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/literal.go -------------------------------------------------------------------------------- /runtime/literal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/literal_test.go -------------------------------------------------------------------------------- /runtime/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/location.go -------------------------------------------------------------------------------- /runtime/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/memory.go -------------------------------------------------------------------------------- /runtime/nft_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/nft_test.go -------------------------------------------------------------------------------- /runtime/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/pprof.go -------------------------------------------------------------------------------- /runtime/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/profile.go -------------------------------------------------------------------------------- /runtime/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/profile_test.go -------------------------------------------------------------------------------- /runtime/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/recover.go -------------------------------------------------------------------------------- /runtime/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/repl.go -------------------------------------------------------------------------------- /runtime/rlp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/rlp_test.go -------------------------------------------------------------------------------- /runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/runtime.go -------------------------------------------------------------------------------- /runtime/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/runtime_test.go -------------------------------------------------------------------------------- /runtime/script_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/script_executor.go -------------------------------------------------------------------------------- /runtime/slabindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/slabindex.go -------------------------------------------------------------------------------- /runtime/stackdepth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/stackdepth.go -------------------------------------------------------------------------------- /runtime/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/storage.go -------------------------------------------------------------------------------- /runtime/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/storage_test.go -------------------------------------------------------------------------------- /runtime/subtype_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/subtype_check_test.go -------------------------------------------------------------------------------- /runtime/tracing_enabled_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/tracing_enabled_test.go -------------------------------------------------------------------------------- /runtime/transaction_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/transaction_executor.go -------------------------------------------------------------------------------- /runtime/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/type_test.go -------------------------------------------------------------------------------- /runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/types.go -------------------------------------------------------------------------------- /runtime/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/validation.go -------------------------------------------------------------------------------- /runtime/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/validation_test.go -------------------------------------------------------------------------------- /runtime/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/value.go -------------------------------------------------------------------------------- /runtime/vm_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/runtime/vm_environment.go -------------------------------------------------------------------------------- /sema/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/access.go -------------------------------------------------------------------------------- /sema/access_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/access_test.go -------------------------------------------------------------------------------- /sema/accesscheckmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/accesscheckmode.go -------------------------------------------------------------------------------- /sema/accesscheckmode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/accesscheckmode_string.go -------------------------------------------------------------------------------- /sema/accesses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/accesses_test.go -------------------------------------------------------------------------------- /sema/account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/account.cdc -------------------------------------------------------------------------------- /sema/account.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/account.gen.go -------------------------------------------------------------------------------- /sema/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/account.go -------------------------------------------------------------------------------- /sema/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/account_test.go -------------------------------------------------------------------------------- /sema/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/any_test.go -------------------------------------------------------------------------------- /sema/any_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/any_type.go -------------------------------------------------------------------------------- /sema/anyattachment_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/anyattachment_types.go -------------------------------------------------------------------------------- /sema/anyresource_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/anyresource_type.go -------------------------------------------------------------------------------- /sema/anystruct_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/anystruct_type.go -------------------------------------------------------------------------------- /sema/assert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/assert_test.go -------------------------------------------------------------------------------- /sema/assignment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/assignment_test.go -------------------------------------------------------------------------------- /sema/attachments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/attachments_test.go -------------------------------------------------------------------------------- /sema/before_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/before_extractor.go -------------------------------------------------------------------------------- /sema/before_extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/before_extractor_test.go -------------------------------------------------------------------------------- /sema/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/benchmark_test.go -------------------------------------------------------------------------------- /sema/binaryoperationkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/binaryoperationkind.go -------------------------------------------------------------------------------- /sema/block.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/block.cdc -------------------------------------------------------------------------------- /sema/block.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/block.gen.go -------------------------------------------------------------------------------- /sema/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/block.go -------------------------------------------------------------------------------- /sema/bool_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/bool_type.go -------------------------------------------------------------------------------- /sema/boolean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/boolean_test.go -------------------------------------------------------------------------------- /sema/builtinfunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/builtinfunctions_test.go -------------------------------------------------------------------------------- /sema/capability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/capability_test.go -------------------------------------------------------------------------------- /sema/casting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/casting_test.go -------------------------------------------------------------------------------- /sema/character.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/character.cdc -------------------------------------------------------------------------------- /sema/character.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/character.gen.go -------------------------------------------------------------------------------- /sema/character.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/character.go -------------------------------------------------------------------------------- /sema/character_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/character_test.go -------------------------------------------------------------------------------- /sema/check_array_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_array_expression.go -------------------------------------------------------------------------------- /sema/check_assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_assignment.go -------------------------------------------------------------------------------- /sema/check_attach_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_attach_expression.go -------------------------------------------------------------------------------- /sema/check_binary_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_binary_expression.go -------------------------------------------------------------------------------- /sema/check_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_block.go -------------------------------------------------------------------------------- /sema/check_conditional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_conditional.go -------------------------------------------------------------------------------- /sema/check_conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_conditions.go -------------------------------------------------------------------------------- /sema/check_emit_statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_emit_statement.go -------------------------------------------------------------------------------- /sema/check_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_expression.go -------------------------------------------------------------------------------- /sema/check_for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_for.go -------------------------------------------------------------------------------- /sema/check_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_function.go -------------------------------------------------------------------------------- /sema/check_path_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_path_expression.go -------------------------------------------------------------------------------- /sema/check_pragma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_pragma.go -------------------------------------------------------------------------------- /sema/check_swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_swap.go -------------------------------------------------------------------------------- /sema/check_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_switch.go -------------------------------------------------------------------------------- /sema/check_while.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/check_while.go -------------------------------------------------------------------------------- /sema/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/checker.go -------------------------------------------------------------------------------- /sema/checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/checker_test.go -------------------------------------------------------------------------------- /sema/composite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/composite_test.go -------------------------------------------------------------------------------- /sema/conditional_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/conditional_test.go -------------------------------------------------------------------------------- /sema/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/conditions_test.go -------------------------------------------------------------------------------- /sema/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/config.go -------------------------------------------------------------------------------- /sema/conformance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/conformance_test.go -------------------------------------------------------------------------------- /sema/containerkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/containerkind.go -------------------------------------------------------------------------------- /sema/containerkind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/containerkind_string.go -------------------------------------------------------------------------------- /sema/contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/contract_test.go -------------------------------------------------------------------------------- /sema/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/crypto_test.go -------------------------------------------------------------------------------- /sema/declaration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/declaration_test.go -------------------------------------------------------------------------------- /sema/declarations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/declarations.go -------------------------------------------------------------------------------- /sema/deployedcontract.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployedcontract.cdc -------------------------------------------------------------------------------- /sema/deployedcontract.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployedcontract.gen.go -------------------------------------------------------------------------------- /sema/deployedcontract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployedcontract.go -------------------------------------------------------------------------------- /sema/deployment_result.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployment_result.cdc -------------------------------------------------------------------------------- /sema/deployment_result.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployment_result.gen.go -------------------------------------------------------------------------------- /sema/deployment_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/deployment_result.go -------------------------------------------------------------------------------- /sema/dictionary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/dictionary_test.go -------------------------------------------------------------------------------- /sema/dynamic_casting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/dynamic_casting_test.go -------------------------------------------------------------------------------- /sema/elaboration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/elaboration.go -------------------------------------------------------------------------------- /sema/entitlements.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlements.cdc -------------------------------------------------------------------------------- /sema/entitlements.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlements.gen.go -------------------------------------------------------------------------------- /sema/entitlements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlements.go -------------------------------------------------------------------------------- /sema/entitlements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlements_test.go -------------------------------------------------------------------------------- /sema/entitlementset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlementset.go -------------------------------------------------------------------------------- /sema/entitlementset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entitlementset_test.go -------------------------------------------------------------------------------- /sema/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entrypoint.go -------------------------------------------------------------------------------- /sema/entrypoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/entrypoint_test.go -------------------------------------------------------------------------------- /sema/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/enum_test.go -------------------------------------------------------------------------------- /sema/error_handling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/error_handling_test.go -------------------------------------------------------------------------------- /sema/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/errors.go -------------------------------------------------------------------------------- /sema/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/errors_test.go -------------------------------------------------------------------------------- /sema/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/events_test.go -------------------------------------------------------------------------------- /sema/fixedpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/fixedpoint_test.go -------------------------------------------------------------------------------- /sema/for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/for_test.go -------------------------------------------------------------------------------- /sema/force_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/force_test.go -------------------------------------------------------------------------------- /sema/function_activations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/function_activations.go -------------------------------------------------------------------------------- /sema/function_invocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/function_invocations.go -------------------------------------------------------------------------------- /sema/function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/function_test.go -------------------------------------------------------------------------------- /sema/gen/golden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/gen/golden_test.go -------------------------------------------------------------------------------- /sema/gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/gen/main.go -------------------------------------------------------------------------------- /sema/gen/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/gen/main_test.go -------------------------------------------------------------------------------- /sema/gen/testdata/comparable/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Comparable {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/composite_type_pragma/test.cdc: -------------------------------------------------------------------------------- 1 | #compositeType 2 | access(all) struct Test {} 3 | -------------------------------------------------------------------------------- /sema/gen/testdata/equatable/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Equatable {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/exportable/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Exportable {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/importable/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Importable {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/member_accessible/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: ContainFields {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/primitive/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Primitive {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/simple_interface/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct interface Test {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/simple_resource/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) resource Test {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/simple_struct/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test {} 2 | -------------------------------------------------------------------------------- /sema/gen/testdata/storable/test.cdc: -------------------------------------------------------------------------------- 1 | access(all) struct Test: Storable {} 2 | -------------------------------------------------------------------------------- /sema/genericfunction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/genericfunction_test.go -------------------------------------------------------------------------------- /sema/hashable_struct.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/hashable_struct.cdc -------------------------------------------------------------------------------- /sema/hashable_struct.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/hashable_struct.gen.go -------------------------------------------------------------------------------- /sema/hashable_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/hashable_struct.go -------------------------------------------------------------------------------- /sema/hashable_struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/hashable_struct_test.go -------------------------------------------------------------------------------- /sema/hashalgorithm_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/hashalgorithm_string.go -------------------------------------------------------------------------------- /sema/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/if_test.go -------------------------------------------------------------------------------- /sema/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/import.go -------------------------------------------------------------------------------- /sema/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/import_test.go -------------------------------------------------------------------------------- /sema/indexing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/indexing_test.go -------------------------------------------------------------------------------- /sema/initialization_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/initialization_info.go -------------------------------------------------------------------------------- /sema/initialization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/initialization_test.go -------------------------------------------------------------------------------- /sema/integer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/integer_test.go -------------------------------------------------------------------------------- /sema/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/interface_test.go -------------------------------------------------------------------------------- /sema/interfaceset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/interfaceset.go -------------------------------------------------------------------------------- /sema/intersection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/intersection_test.go -------------------------------------------------------------------------------- /sema/invalid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/invalid_test.go -------------------------------------------------------------------------------- /sema/invalid_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/invalid_type.go -------------------------------------------------------------------------------- /sema/invocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/invocation_test.go -------------------------------------------------------------------------------- /sema/member_accesses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/member_accesses.go -------------------------------------------------------------------------------- /sema/member_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/member_test.go -------------------------------------------------------------------------------- /sema/meta_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/meta_type.go -------------------------------------------------------------------------------- /sema/metatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/metatype_test.go -------------------------------------------------------------------------------- /sema/move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/move_test.go -------------------------------------------------------------------------------- /sema/nesting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/nesting_test.go -------------------------------------------------------------------------------- /sema/never_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/never_test.go -------------------------------------------------------------------------------- /sema/never_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/never_type.go -------------------------------------------------------------------------------- /sema/nil_coalescing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/nil_coalescing_test.go -------------------------------------------------------------------------------- /sema/occurrences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/occurrences.go -------------------------------------------------------------------------------- /sema/occurrences_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/occurrences_test.go -------------------------------------------------------------------------------- /sema/operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/operations_test.go -------------------------------------------------------------------------------- /sema/optional_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/optional_test.go -------------------------------------------------------------------------------- /sema/orderdmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/orderdmaps.go -------------------------------------------------------------------------------- /sema/overloading_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/overloading_test.go -------------------------------------------------------------------------------- /sema/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/path_test.go -------------------------------------------------------------------------------- /sema/path_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/path_type.go -------------------------------------------------------------------------------- /sema/positioninfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/positioninfo.go -------------------------------------------------------------------------------- /sema/pragma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/pragma_test.go -------------------------------------------------------------------------------- /sema/purity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/purity_test.go -------------------------------------------------------------------------------- /sema/range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/range_test.go -------------------------------------------------------------------------------- /sema/range_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/range_value_test.go -------------------------------------------------------------------------------- /sema/ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/ranges.go -------------------------------------------------------------------------------- /sema/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/reference_test.go -------------------------------------------------------------------------------- /sema/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resolve.go -------------------------------------------------------------------------------- /sema/resource_invalidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resource_invalidation.go -------------------------------------------------------------------------------- /sema/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resource_test.go -------------------------------------------------------------------------------- /sema/resourceinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resourceinfo.go -------------------------------------------------------------------------------- /sema/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resources.go -------------------------------------------------------------------------------- /sema/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/resources_test.go -------------------------------------------------------------------------------- /sema/return_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/return_info.go -------------------------------------------------------------------------------- /sema/return_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/return_test.go -------------------------------------------------------------------------------- /sema/rlp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/rlp_test.go -------------------------------------------------------------------------------- /sema/runtimetype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/runtimetype_test.go -------------------------------------------------------------------------------- /sema/simple_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/simple_type.go -------------------------------------------------------------------------------- /sema/storable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/storable_test.go -------------------------------------------------------------------------------- /sema/storable_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/storable_type.go -------------------------------------------------------------------------------- /sema/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/string_test.go -------------------------------------------------------------------------------- /sema/string_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/string_type.go -------------------------------------------------------------------------------- /sema/struct_stringer.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/struct_stringer.cdc -------------------------------------------------------------------------------- /sema/struct_stringer.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/struct_stringer.gen.go -------------------------------------------------------------------------------- /sema/struct_stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/struct_stringer.go -------------------------------------------------------------------------------- /sema/struct_stringer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/struct_stringer_test.go -------------------------------------------------------------------------------- /sema/subtype_check.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/subtype_check.gen.go -------------------------------------------------------------------------------- /sema/subtype_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/subtype_check.go -------------------------------------------------------------------------------- /sema/swap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/swap_test.go -------------------------------------------------------------------------------- /sema/switch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/switch_test.go -------------------------------------------------------------------------------- /sema/transactions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/transactions_test.go -------------------------------------------------------------------------------- /sema/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type.go -------------------------------------------------------------------------------- /sema/type_check_gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type_check_gen/main.go -------------------------------------------------------------------------------- /sema/type_inference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type_inference_test.go -------------------------------------------------------------------------------- /sema/type_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type_names.go -------------------------------------------------------------------------------- /sema/type_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type_tags.go -------------------------------------------------------------------------------- /sema/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/type_test.go -------------------------------------------------------------------------------- /sema/typeannotationstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/typeannotationstate.go -------------------------------------------------------------------------------- /sema/typeargument_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/typeargument_test.go -------------------------------------------------------------------------------- /sema/typecheckfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/typecheckfunc.go -------------------------------------------------------------------------------- /sema/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/utils_test.go -------------------------------------------------------------------------------- /sema/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/variable.go -------------------------------------------------------------------------------- /sema/variable_activations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/variable_activations.go -------------------------------------------------------------------------------- /sema/void_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/void_type.go -------------------------------------------------------------------------------- /sema/while_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/sema/while_test.go -------------------------------------------------------------------------------- /semgrep-compiler-vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/semgrep-compiler-vm.yaml -------------------------------------------------------------------------------- /semgrep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/semgrep.yaml -------------------------------------------------------------------------------- /stdlib/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/account.go -------------------------------------------------------------------------------- /stdlib/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/account_test.go -------------------------------------------------------------------------------- /stdlib/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/assert.go -------------------------------------------------------------------------------- /stdlib/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/block.go -------------------------------------------------------------------------------- /stdlib/bls.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/bls.cdc -------------------------------------------------------------------------------- /stdlib/bls.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/bls.gen.go -------------------------------------------------------------------------------- /stdlib/bls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/bls.go -------------------------------------------------------------------------------- /stdlib/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/builtin.go -------------------------------------------------------------------------------- /stdlib/builtin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/builtin_test.go -------------------------------------------------------------------------------- /stdlib/contracts/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/contracts/flow.json -------------------------------------------------------------------------------- /stdlib/contracts/test.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/contracts/test.cdc -------------------------------------------------------------------------------- /stdlib/contracts/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/contracts/test.go -------------------------------------------------------------------------------- /stdlib/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/crypto.go -------------------------------------------------------------------------------- /stdlib/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/flow.go -------------------------------------------------------------------------------- /stdlib/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/flow_test.go -------------------------------------------------------------------------------- /stdlib/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/functions.go -------------------------------------------------------------------------------- /stdlib/hashalgorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/hashalgorithm.go -------------------------------------------------------------------------------- /stdlib/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/log.go -------------------------------------------------------------------------------- /stdlib/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/panic.go -------------------------------------------------------------------------------- /stdlib/publickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/publickey.go -------------------------------------------------------------------------------- /stdlib/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/random.go -------------------------------------------------------------------------------- /stdlib/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/random_test.go -------------------------------------------------------------------------------- /stdlib/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/range.go -------------------------------------------------------------------------------- /stdlib/rlp.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/rlp.cdc -------------------------------------------------------------------------------- /stdlib/rlp.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/rlp.gen.go -------------------------------------------------------------------------------- /stdlib/rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/rlp.go -------------------------------------------------------------------------------- /stdlib/rlp/rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/rlp/rlp.go -------------------------------------------------------------------------------- /stdlib/rlp/rlp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/rlp/rlp_test.go -------------------------------------------------------------------------------- /stdlib/signaturealgorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/signaturealgorithm.go -------------------------------------------------------------------------------- /stdlib/test-framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/test-framework.go -------------------------------------------------------------------------------- /stdlib/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/test.go -------------------------------------------------------------------------------- /stdlib/test_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/test_contract.go -------------------------------------------------------------------------------- /stdlib/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/test_test.go -------------------------------------------------------------------------------- /stdlib/type-comparator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/type-comparator.go -------------------------------------------------------------------------------- /stdlib/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/types.go -------------------------------------------------------------------------------- /stdlib/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/stdlib/value.go -------------------------------------------------------------------------------- /test_utils/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/test_utils/test_utils.go -------------------------------------------------------------------------------- /test_utils/vm_invokable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/test_utils/vm_invokable.go -------------------------------------------------------------------------------- /tools/accounts-script/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/accounts-script/go.mod -------------------------------------------------------------------------------- /tools/accounts-script/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/accounts-script/go.sum -------------------------------------------------------------------------------- /tools/accounts-script/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/accounts-script/main.go -------------------------------------------------------------------------------- /tools/analysis/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/analysis.go -------------------------------------------------------------------------------- /tools/analysis/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/analyzer.go -------------------------------------------------------------------------------- /tools/analysis/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/config.go -------------------------------------------------------------------------------- /tools/analysis/diagnostic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/diagnostic.go -------------------------------------------------------------------------------- /tools/analysis/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/error.go -------------------------------------------------------------------------------- /tools/analysis/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/inspector.go -------------------------------------------------------------------------------- /tools/analysis/loadmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/loadmode.go -------------------------------------------------------------------------------- /tools/analysis/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/pass.go -------------------------------------------------------------------------------- /tools/analysis/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/program.go -------------------------------------------------------------------------------- /tools/analysis/programs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/analysis/programs.go -------------------------------------------------------------------------------- /tools/ast-explorer/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/ast-explorer/.eslintrc -------------------------------------------------------------------------------- /tools/ast-explorer/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /tools/ast-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/ast-explorer/README.md -------------------------------------------------------------------------------- /tools/ast-explorer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/ast-explorer/main.go -------------------------------------------------------------------------------- /tools/compare-parsing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/compare-parsing/main.go -------------------------------------------------------------------------------- /tools/constructorcheck/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/constructorcheck/go.mod -------------------------------------------------------------------------------- /tools/constructorcheck/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/constructorcheck/go.sum -------------------------------------------------------------------------------- /tools/get-contracts/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/onflow/cadence/tools/get-contracts 2 | 3 | go 1.24 4 | -------------------------------------------------------------------------------- /tools/get-contracts/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/get-contracts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/get-contracts/main.go -------------------------------------------------------------------------------- /tools/golangci-lint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/golangci-lint/Makefile -------------------------------------------------------------------------------- /tools/golangci-lint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/golangci-lint/go.mod -------------------------------------------------------------------------------- /tools/golangci-lint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/golangci-lint/go.sum -------------------------------------------------------------------------------- /tools/golangci-lint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/golangci-lint/main.go -------------------------------------------------------------------------------- /tools/maprange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/Makefile -------------------------------------------------------------------------------- /tools/maprange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/README.md -------------------------------------------------------------------------------- /tools/maprange/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/analyzer.go -------------------------------------------------------------------------------- /tools/maprange/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/go.mod -------------------------------------------------------------------------------- /tools/maprange/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/go.sum -------------------------------------------------------------------------------- /tools/maprange/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/maprange/main.go -------------------------------------------------------------------------------- /tools/pretty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/pretty/README.md -------------------------------------------------------------------------------- /tools/pretty/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/pretty/main.go -------------------------------------------------------------------------------- /tools/storage-explorer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/storage-explorer/go.mod -------------------------------------------------------------------------------- /tools/storage-explorer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/storage-explorer/go.sum -------------------------------------------------------------------------------- /tools/storage-explorer/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tools/subtype-gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/subtype-gen/README.md -------------------------------------------------------------------------------- /tools/subtype-gen/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/subtype-gen/errors.go -------------------------------------------------------------------------------- /tools/subtype-gen/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/subtype-gen/rules.yaml -------------------------------------------------------------------------------- /tools/subtype-gen/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/subtype-gen/types.go -------------------------------------------------------------------------------- /tools/subtype-gen/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/subtype-gen/utils.go -------------------------------------------------------------------------------- /tools/unkeyed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/Makefile -------------------------------------------------------------------------------- /tools/unkeyed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/README.md -------------------------------------------------------------------------------- /tools/unkeyed/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/analyzer.go -------------------------------------------------------------------------------- /tools/unkeyed/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/go.mod -------------------------------------------------------------------------------- /tools/unkeyed/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/go.sum -------------------------------------------------------------------------------- /tools/unkeyed/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/unkeyed/main.go -------------------------------------------------------------------------------- /tools/update/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/.eslintrc.cjs -------------------------------------------------------------------------------- /tools/update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/README.md -------------------------------------------------------------------------------- /tools/update/config.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/config.schema.ts -------------------------------------------------------------------------------- /tools/update/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/config.yaml -------------------------------------------------------------------------------- /tools/update/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/main.ts -------------------------------------------------------------------------------- /tools/update/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/package.json -------------------------------------------------------------------------------- /tools/update/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/tools/update/tsconfig.json -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/types.go -------------------------------------------------------------------------------- /types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/types_test.go -------------------------------------------------------------------------------- /utils/version/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/utils/version/main.go -------------------------------------------------------------------------------- /values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values.go -------------------------------------------------------------------------------- /values/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/big.go -------------------------------------------------------------------------------- /values/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/encode.go -------------------------------------------------------------------------------- /values/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/errors.go -------------------------------------------------------------------------------- /values/safe_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/safe_math.go -------------------------------------------------------------------------------- /values/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value.go -------------------------------------------------------------------------------- /values/value_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_bool.go -------------------------------------------------------------------------------- /values/value_comparable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_comparable.go -------------------------------------------------------------------------------- /values/value_equatable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_equatable.go -------------------------------------------------------------------------------- /values/value_fixedpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_fixedpoint.go -------------------------------------------------------------------------------- /values/value_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_int.go -------------------------------------------------------------------------------- /values/value_integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_integer.go -------------------------------------------------------------------------------- /values/value_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_number.go -------------------------------------------------------------------------------- /values/value_ufix64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values/value_ufix64.go -------------------------------------------------------------------------------- /values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/values_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/cadence/HEAD/version.go --------------------------------------------------------------------------------