about summary refs log tree commit diff stats
path: root/edit
ModeNameSize
-rw-r--r--001-editor.mu13270log stats plain blame
-rw-r--r--002-typing.mu33553log stats plain blame
-rw-r--r--003-shortcuts.mu90952log stats plain blame
-rw-r--r--004-programming-environment.mu25463log stats plain blame
-rw-r--r--005-sandbox.mu62041log stats plain blame
-rw-r--r--006-sandbox-copy.mu17634log stats plain blame
-rw-r--r--007-sandbox-delete.mu20985log stats plain blame
-rw-r--r--008-sandbox-edit.mu22044log stats plain blame
-rw-r--r--009-sandbox-test.mu10156log stats plain blame
-rw-r--r--010-sandbox-trace.mu14638log stats plain blame
-rw-r--r--011-errors.mu40231log stats plain blame
-rw-r--r--012-editor-undo.mu60858log stats plain blame
-rw-r--r--Readme.md837log stats plain blame
># generator is 0? use real random-number generator result <- real-random reply result, 0/false } result, fail?, generator <- read generator ] # helper for tests def assume-random-numbers -> result:address:stream:number [ local-scope load-ingredients # compute result-len, space to allocate in result result-len:number <- copy 0 { _, arg-received?:boolean <- next-ingredient break-unless arg-received? result-len <- add result-len, 1 loop } rewind-ingredients result-data:address:array:number <- new number:type, result-len idx:number <- copy 0 { curr:number, arg-received?:boolean <- next-ingredient break-unless arg-received? *result-data <- put-index *result-data, idx, curr idx <- add idx, 1 loop } result <- new-stream result-data ] scenario random-numbers-in-scenario [ local-scope source:address:stream:number <- assume-random-numbers 34, 35, 37 1:number/raw, 2:boolean/raw <- random source 3:number/raw, 4:boolean/raw <- random source 5:number/raw, 6:boolean/raw <- random source 7:number/raw, 8:boolean/raw <- random source memory-should-contain [ 1 <- 34 2 <- 0 # everything went well 3 <- 35 4 <- 0 # everything went well 5 <- 37 6 <- 0 # everything went well 7 <- 0 # empty result 8 <- 1 # end of stream ] ]