mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19991117
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
943e99e627
commit
8e48dc16e9
19 changed files with 370 additions and 136 deletions
8
ToDo
8
ToDo
|
|
@ -3,12 +3,14 @@ Language Spec.
|
|||
- def foo; .. rescue .. end
|
||||
- compile time string concatenation, "hello" "world" => "helloworld"
|
||||
- rescue modifier; a rescue b => begin a rescue; b end
|
||||
- assignable constant, which now should be called shared variable.
|
||||
- class variable (prefix?) -- done by shared variable
|
||||
* objectify symbols
|
||||
* objectify characters
|
||||
* ../... outside condition invokes operator method too.
|
||||
* ... inside condition turns off just before right condition.???
|
||||
* %w(a\ b\ c abc) => ["a b c", "abc"]
|
||||
* package or access control for global variables
|
||||
* class variable (prefix?)
|
||||
* package or access control for global variables??
|
||||
* named arguments like foo(nation:="german") or foo(nation: "german").
|
||||
* method to retrieve argument information (need new C API)
|
||||
* multiple return values, yield values. maybe incompatible ???
|
||||
|
|
@ -21,6 +23,7 @@ Hacking Interpreter
|
|||
|
||||
- use eban's fnmatch
|
||||
- RUBYOPT environment variable
|
||||
- alias $defout $>
|
||||
* non-blocking open (e.g. for named pipe) for thread
|
||||
* avoid blocking with gethostbyname/gethostbyaddr
|
||||
* objectify interpreters
|
||||
|
|
@ -36,6 +39,7 @@ Standard Libraries
|
|||
- Array#{first,last,at}
|
||||
- Dir.glob(pat){|f|...}
|
||||
- sprintf/printf's $ to specify argument order
|
||||
* debugger for thread programming
|
||||
* Dir.glob("**/*.c") ala zsh
|
||||
* Struct::new([name,]member,...) ??
|
||||
* String#scanf(?)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue