fluL_newstate Function

public function fluL_newstate() result(new_state)

Arguments

None

Return Value type(flu_State)


Calls

proc~~flul_newstate~~CallsGraph proc~flul_newstate fluL_newstate interface~lual_newstate luaL_newstate proc~flul_newstate->interface~lual_newstate

Called by

proc~~flul_newstate~~CalledByGraph proc~flul_newstate fluL_newstate proc~aot_file_to_buffer aot_file_to_buffer proc~aot_file_to_buffer->proc~flul_newstate proc~open_config_buffer open_config_buffer proc~open_config_buffer->proc~flul_newstate proc~open_config_chunk open_config_chunk proc~open_config_chunk->proc~flul_newstate proc~open_config_file open_config_file proc~open_config_file->proc~flul_newstate program~test test program~test->proc~flul_newstate proc~aot_path_open_table aot_path_open_table proc~aot_path_open_table->proc~open_config_file proc~aot_require_buffer aot_require_buffer proc~aot_require_buffer->proc~open_config_buffer interface~aot_path_open aot_path_open interface~aot_path_open->proc~aot_path_open_table proc~aot_path_open_fun aot_path_open_fun interface~aot_path_open->proc~aot_path_open_fun proc~aot_path_open_fun->proc~aot_path_open_table

Source Code

  function fluL_newstate() result(new_state)
    type(flu_State) :: new_state

    new_state%state = luaL_newstate()
  end function fluL_newstate