summaryrefslogtreecommitdiffstats
path: root/toolkit/components/uniffi-bindgen-gecko-js/src/templates/js/TopLevelFunctions.jsm
blob: 9f869240bc32dc67f49affab8e093ef8ed013339 (plain)
1
2
3
4
5
6
7
8
{%- for func in ci.function_definitions() %}
function {{ func.nm() }}({{ func.arg_names() }}) {
    {% call js::call_scaffolding_function(func) %}
}

EXPORTED_SYMBOLS.push("{{ func.nm() }}");

{%- endfor %}