Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dannyvankooten/nederlang
/ functions
Functions
315 in github.com/dannyvankooten/nederlang
⨍
Functions
315
◇
Types & classes
31
Function
ints
()
src/lexer.rs:349
Function
main
()
src/bin/nederlang.rs:48
Method
message
* @returns {string}
docs/playground/pkg/playground.js:145
Method
new
Creates a new Parser from the given input string
src/parser.rs:49
Method
new
(input: &str)
src/lexer.rs:115
Method
new
(start: usize)
src/compiler.rs:153
Method
new
Create a new Garbage Collector to manage heap-allocated objects
src/gc.rs:15
Method
new
(scope: Scope)
src/symbols.rs:28
Method
new
(ip: usize, base_pointer: u16)
src/vm.rs:25
Method
null
()
src/object.rs:81
Method
partial_cmp
(&self, other: &Self)
src/object.rs:343
Function
passive
()
docs/playground/assets/ace.js:1
Function
prefix_expressions
()
src/lexer.rs:435
Method
read
(obj: &Object)
src/object.rs:435
Function
run
(program: &str)
src/compiler.rs:791
Method
run
Executes the given Bytecode inside the context of this VM
src/vm.rs:156
Method
string
(value: RString, gc: &mut GC)
src/object.rs:284
Method
success
* @returns {boolean}
docs/playground/pkg/playground.js:132
Function
test_array
()
tests/vm_test.rs:458
Function
test_array_expression
()
src/parser.rs:901
Function
test_array_index_assignment
()
tests/vm_test.rs:547
Function
test_array_index_assignment_invalid_index
()
tests/vm_test.rs:569
Function
test_array_index_assignment_out_of_bounds
()
tests/vm_test.rs:560
Function
test_array_indexing
()
tests/vm_test.rs:503
Function
test_array_indexing_invalid_index
()
tests/vm_test.rs:529
Function
test_array_indexing_out_of_bounds
()
tests/vm_test.rs:520
Function
test_assign_expressions
()
src/parser.rs:770
Function
test_assignments
()
tests/vm_test.rs:185
Function
test_block_statements
()
src/compiler.rs:848
Function
test_bool_expression
()
src/parser.rs:505
Function
test_bool_expression
()
src/compiler.rs:819
Function
test_break_statement
()
tests/vm_test.rs:313
Function
test_call_builtin
()
src/compiler.rs:934
Function
test_call_expression
()
src/parser.rs:837
Function
test_call_expression
()
src/compiler.rs:899
Function
test_cast_bool
()
tests/vm_test.rs:404
Function
test_cast_float
()
tests/vm_test.rs:446
Function
test_cast_int
()
tests/vm_test.rs:395
Function
test_cast_string
()
tests/vm_test.rs:427
Function
test_const_local_cmp
()
tests/vm_test.rs:70
Function
test_continue_statement
()
tests/vm_test.rs:357
Function
test_declare_statement
()
src/compiler.rs:907
Function
test_declare_statements
()
src/parser.rs:754
Function
test_empty_block_statement
()
tests/vm_test.rs:108
Function
test_empty_while
()
tests/vm_test.rs:113
Function
test_examples
()
tests/vm_test.rs:20
Function
test_fib_loop
()
tests/vm_test.rs:305
Function
test_fib_recursion
()
tests/vm_test.rs:295
Function
test_float_expression
()
src/parser.rs:532
Function
test_float_expression
()
src/compiler.rs:826
Function
test_function_accessing_global
()
tests/vm_test.rs:286
Function
test_function_expression
()
src/parser.rs:786
Function
test_function_expression
()
src/compiler.rs:886
Function
test_function_expression_calls
()
tests/vm_test.rs:146
Function
test_function_vars
()
tests/vm_test.rs:237
Function
test_functions_as_argument
()
tests/vm_test.rs:278
Function
test_gc_float
()
tests/vm_test.rs:372
Function
test_gc_negate_float
()
tests/vm_test.rs:362
Function
test_gc_str
()
tests/vm_test.rs:385
Function
test_ident_expression
()
src/parser.rs:818
Function
test_ident_expressions
()
src/compiler.rs:919
Function
test_if_expression
()
src/compiler.rs:853
Function
test_if_expression
()
tests/vm_test.rs:118
Function
test_if_expression_empty_body
()
src/compiler.rs:865
Function
test_if_expression_empty_else
()
src/compiler.rs:878
Function
test_if_expression_with_else
()
tests/vm_test.rs:124
Function
test_if_expression_with_empty_else
()
tests/vm_test.rs:140
Function
test_if_expression_with_empy_body
()
tests/vm_test.rs:134
Function
test_if_expressions
()
src/parser.rs:730
Function
test_index_expression
()
src/parser.rs:944
Function
test_indexing_on_non_array
()
tests/vm_test.rs:538
Function
test_infix_expression
()
src/compiler.rs:836
Function
test_infix_expression
()
tests/vm_test.rs:56
Function
test_infix_expressions
()
src/parser.rs:560
Function
test_int_expression
()
src/parser.rs:517
Function
test_int_expression
()
src/compiler.rs:809
Function
test_int_expression
()
tests/vm_test.rs:50
Function
test_logical_andor
()
tests/vm_test.rs:86
Function
test_named_functions
()
tests/vm_test.rs:253
Function
test_negate_int
()
tests/vm_test.rs:96
Function
test_nested_local_scopes
()
tests/vm_test.rs:163
Function
test_not_values
()
tests/vm_test.rs:101
Function
test_object_bool
()
src/object.rs:582
Function
test_object_function
()
src/object.rs:562
Function
test_object_int
()
src/object.rs:597
Function
test_object_int_overflow
()
src/object.rs:617
Function
test_object_null
()
src/object.rs:576
Function
test_object_size
()
tests/vm_test.rs:14
Function
test_object_string
()
src/object.rs:626
Function
test_op_assign
()
tests/vm_test.rs:197
Function
test_op_assign_expression
()
src/parser.rs:968
Function
test_pointer_array
()
src/object.rs:653
Function
test_pointer_empty_array
()
src/object.rs:644
Function
test_pointer_float
()
src/object.rs:635
Function
test_prefix_expressions
()
src/parser.rs:708
Function
test_referencing_undeclared_vars
()
tests/vm_test.rs:202
Function
test_retained_functions
()
tests/vm_test.rs:668
Function
test_retained_state
()
tests/vm_test.rs:648
Function
test_return_statements
()
src/parser.rs:870
Function
test_scoped_variables
()
tests/vm_test.rs:217
← previous
next →
201–300 of 315, ranked by callers