Index: tools/json_schema_compiler/schema_bundle_generator.py |
diff --git a/tools/json_schema_compiler/schema_bundle_generator.py b/tools/json_schema_compiler/schema_bundle_generator.py |
index c587bbc3f8acca52f8b482df00250a9f5101e28e..21e453cfb90ac27a2b36ce17bec4feead8cf77a6 100644 |
--- a/tools/json_schema_compiler/schema_bundle_generator.py |
+++ b/tools/json_schema_compiler/schema_bundle_generator.py |
@@ -79,6 +79,8 @@ class SchemaBundleGenerator(object): |
c.Sblock("static void RegisterAll(ExtensionFunctionRegistry* registry) {") |
for namespace in self._model.namespaces.values(): |
for function in namespace.functions.values(): |
+ if function.nocompile: |
+ continue |
namespace_name = self.CapitalizeFirstLetter(namespace.name.replace( |
"experimental.", "")) |
function_name = namespace_name + self.CapitalizeFirstLetter( |