@@ -25702,6 +25702,7 @@ bool flecs_rest_script(
2570225702 (void)world;
2570325703 (void)req;
2570425704 (void)reply;
25705+ (void)path;
2570525706#ifdef FLECS_SCRIPT
2570625707 ecs_entity_t script = flecs_rest_entity_from_path(world, reply, path);
2570725708 if (!script) {
@@ -41502,13 +41503,6 @@ const char* ecs_world_from_json_file(
4150241503#ifndef FLECS_SCRIPT_PRIVATE_H
4150341504#define FLECS_SCRIPT_PRIVATE_H
4150441505
41505-
41506- #ifdef FLECS_SCRIPT
41507-
41508- typedef struct ecs_script_entity_t ecs_script_entity_t;
41509-
41510- #define flecs_script_impl(script) ((ecs_script_impl_t*)script)
41511-
4151241506/**
4151341507 * @file addons/parser/parser.h
4151441508 * @brief Parser addon.
@@ -41656,6 +41650,12 @@ const char* flecs_tokenizer_identifier(
4165641650#endif
4165741651
4165841652
41653+ #ifdef FLECS_SCRIPT
41654+
41655+ typedef struct ecs_script_entity_t ecs_script_entity_t;
41656+
41657+ #define flecs_script_impl(script) ((ecs_script_impl_t*)script)
41658+
4165941659struct ecs_script_impl_t {
4166041660 ecs_script_t pub;
4166141661 ecs_allocator_t allocator;
@@ -55808,8 +55808,6 @@ bool ecs_using_task_threads(
5580855808 * @brief Script grammar parser.
5580955809 */
5581055810
55811-
55812- #ifdef FLECS_QUERY_DSL
5581355811/**
5581455812 * @file addons/parser/grammar.h
5581555813 * @brief Grammar parser.
@@ -56084,6 +56082,9 @@ bool ecs_using_task_threads(
5608456082#endif
5608556083
5608656084
56085+ #ifdef FLECS_QUERY_DSL
56086+
56087+
5608756088#define EcsTokTermIdentifier\
5608856089 EcsTokIdentifier:\
5608956090 case EcsTokNumber:\
@@ -58078,6 +58079,7 @@ void FlecsScriptMathImport(
5807858079 */
5807958080
5808058081
58082+
5808158083#ifdef FLECS_SCRIPT
5808258084
5808358085#define EcsTokEndOfStatement\
0 commit comments