MCPcopy Create free account

hub / github.com/dannyvankooten/nederlang / functions

Functions315 in github.com/dannyvankooten/nederlang

Functionints
()
src/lexer.rs:349
Functionmain
()
src/bin/nederlang.rs:48
Methodmessage
* @returns {string}
docs/playground/pkg/playground.js:145
Methodnew
Creates a new Parser from the given input string
src/parser.rs:49
Methodnew
(input: &str)
src/lexer.rs:115
Methodnew
(start: usize)
src/compiler.rs:153
Methodnew
Create a new Garbage Collector to manage heap-allocated objects
src/gc.rs:15
Methodnew
(scope: Scope)
src/symbols.rs:28
Methodnew
(ip: usize, base_pointer: u16)
src/vm.rs:25
Methodnull
()
src/object.rs:81
Methodpartial_cmp
(&self, other: &Self)
src/object.rs:343
Functionpassive
()
docs/playground/assets/ace.js:1
Functionprefix_expressions
()
src/lexer.rs:435
Methodread
(obj: &Object)
src/object.rs:435
Functionrun
(program: &str)
src/compiler.rs:791
Methodrun
Executes the given Bytecode inside the context of this VM
src/vm.rs:156
Methodstring
(value: RString, gc: &mut GC)
src/object.rs:284
Methodsuccess
* @returns {boolean}
docs/playground/pkg/playground.js:132
Functiontest_array
()
tests/vm_test.rs:458
Functiontest_array_expression
()
src/parser.rs:901
Functiontest_array_index_assignment
()
tests/vm_test.rs:547
Functiontest_array_index_assignment_invalid_index
()
tests/vm_test.rs:569
Functiontest_array_index_assignment_out_of_bounds
()
tests/vm_test.rs:560
Functiontest_array_indexing
()
tests/vm_test.rs:503
Functiontest_array_indexing_invalid_index
()
tests/vm_test.rs:529
Functiontest_array_indexing_out_of_bounds
()
tests/vm_test.rs:520
Functiontest_assign_expressions
()
src/parser.rs:770
Functiontest_assignments
()
tests/vm_test.rs:185
Functiontest_block_statements
()
src/compiler.rs:848
Functiontest_bool_expression
()
src/parser.rs:505
Functiontest_bool_expression
()
src/compiler.rs:819
Functiontest_break_statement
()
tests/vm_test.rs:313
Functiontest_call_builtin
()
src/compiler.rs:934
Functiontest_call_expression
()
src/parser.rs:837
Functiontest_call_expression
()
src/compiler.rs:899
Functiontest_cast_bool
()
tests/vm_test.rs:404
Functiontest_cast_float
()
tests/vm_test.rs:446
Functiontest_cast_int
()
tests/vm_test.rs:395
Functiontest_cast_string
()
tests/vm_test.rs:427
Functiontest_const_local_cmp
()
tests/vm_test.rs:70
Functiontest_continue_statement
()
tests/vm_test.rs:357
Functiontest_declare_statement
()
src/compiler.rs:907
Functiontest_declare_statements
()
src/parser.rs:754
Functiontest_empty_block_statement
()
tests/vm_test.rs:108
Functiontest_empty_while
()
tests/vm_test.rs:113
Functiontest_examples
()
tests/vm_test.rs:20
Functiontest_fib_loop
()
tests/vm_test.rs:305
Functiontest_fib_recursion
()
tests/vm_test.rs:295
Functiontest_float_expression
()
src/parser.rs:532
Functiontest_float_expression
()
src/compiler.rs:826
Functiontest_function_accessing_global
()
tests/vm_test.rs:286
Functiontest_function_expression
()
src/parser.rs:786
Functiontest_function_expression
()
src/compiler.rs:886
Functiontest_function_expression_calls
()
tests/vm_test.rs:146
Functiontest_function_vars
()
tests/vm_test.rs:237
Functiontest_functions_as_argument
()
tests/vm_test.rs:278
Functiontest_gc_float
()
tests/vm_test.rs:372
Functiontest_gc_negate_float
()
tests/vm_test.rs:362
Functiontest_gc_str
()
tests/vm_test.rs:385
Functiontest_ident_expression
()
src/parser.rs:818
Functiontest_ident_expressions
()
src/compiler.rs:919
Functiontest_if_expression
()
src/compiler.rs:853
Functiontest_if_expression
()
tests/vm_test.rs:118
Functiontest_if_expression_empty_body
()
src/compiler.rs:865
Functiontest_if_expression_empty_else
()
src/compiler.rs:878
Functiontest_if_expression_with_else
()
tests/vm_test.rs:124
Functiontest_if_expression_with_empty_else
()
tests/vm_test.rs:140
Functiontest_if_expression_with_empy_body
()
tests/vm_test.rs:134
Functiontest_if_expressions
()
src/parser.rs:730
Functiontest_index_expression
()
src/parser.rs:944
Functiontest_indexing_on_non_array
()
tests/vm_test.rs:538
Functiontest_infix_expression
()
src/compiler.rs:836
Functiontest_infix_expression
()
tests/vm_test.rs:56
Functiontest_infix_expressions
()
src/parser.rs:560
Functiontest_int_expression
()
src/parser.rs:517
Functiontest_int_expression
()
src/compiler.rs:809
Functiontest_int_expression
()
tests/vm_test.rs:50
Functiontest_logical_andor
()
tests/vm_test.rs:86
Functiontest_named_functions
()
tests/vm_test.rs:253
Functiontest_negate_int
()
tests/vm_test.rs:96
Functiontest_nested_local_scopes
()
tests/vm_test.rs:163
Functiontest_not_values
()
tests/vm_test.rs:101
Functiontest_object_bool
()
src/object.rs:582
Functiontest_object_function
()
src/object.rs:562
Functiontest_object_int
()
src/object.rs:597
Functiontest_object_int_overflow
()
src/object.rs:617
Functiontest_object_null
()
src/object.rs:576
Functiontest_object_size
()
tests/vm_test.rs:14
Functiontest_object_string
()
src/object.rs:626
Functiontest_op_assign
()
tests/vm_test.rs:197
Functiontest_op_assign_expression
()
src/parser.rs:968
Functiontest_pointer_array
()
src/object.rs:653
Functiontest_pointer_empty_array
()
src/object.rs:644
Functiontest_pointer_float
()
src/object.rs:635
Functiontest_prefix_expressions
()
src/parser.rs:708
Functiontest_referencing_undeclared_vars
()
tests/vm_test.rs:202
Functiontest_retained_functions
()
tests/vm_test.rs:668
Functiontest_retained_state
()
tests/vm_test.rs:648
Functiontest_return_statements
()
src/parser.rs:870
Functiontest_scoped_variables
()
tests/vm_test.rs:217
← previousnext →201–300 of 315, ranked by callers