forked from jnthn/6model
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
revert most of the last week's "progress"
- Loading branch information
Showing
47 changed files
with
578 additions
and
612 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,48 +1,2 @@ | ||
| %.FormWith%( [1]( # on SharedTable | ||
| %.FindMethod%( [2]( # on SharedTable | ||
| %.Invoke%( [3]( # on SharedTable | ||
| %.TypeCheck%( [4]( # on SharedTable | ||
| %.REPR [5] # on SharedTable | ||
| %.HOW [6] # on SharedTable | ||
| %.WHAT [7] # on SharedTable | ||
| %.SpecialInvoke [8] # on SharedTable | ||
| %.CachedInvoke [9] # on SharedTable | ||
| %.TypeCheckCache [10] # on SharedTable | ||
| %.CachedFindMethod [11] # on SharedTable | ||
| %.TypeCacheID [12] # on SharedTable | ||
| %.new%( [1]( # all classes with constructors named new | ||
| %.CurrentContext [0] # dual purpose (ThreadContext and RakudoCodeRef instance) | ||
| %.OuterForNextInvocation [18] # on RakudoCodeRef | ||
| %.OuterBlock [19] # on RakudoCodeRef | ||
| %.StaticLexPad [20] # on RakudoCodeRef | ||
| Ops%.box_int%( Ops[1]( | ||
| Ops%.box_num%( Ops[2]( | ||
| Ops%.box_str%( Ops[3]( | ||
| Ops%.unbox_int%( Ops[4]( | ||
| Ops%.unbox_num%( Ops[5]( | ||
| Ops%.unbox_str%( Ops[6]( | ||
| Ops%.type_object_for%( Ops[43]( | ||
| Ops%.instance_of%( Ops[44]( | ||
| DefinednessConstraint%.None 0 | ||
| DefinednessConstraint%.DefinedOnly 1 | ||
| DefinednessConstraint%.UndefinedOnly 2 | ||
| %.STable [1] # on every RakudoObject impl (inner classes of the repr classes) | ||
| %.Value [2] # some RakudoObject impl | ||
| %.Undefined [3] # some RakudoObject impl | ||
| %.Positionals [2] # on P6capture | ||
| %.Nameds [3] # on P6capture | ||
| %.type_object_for%( [2]( # all REPR impl | ||
| %.instance_of%( [3]( # all REPR impl | ||
| %.defined%( [4]( # all REPR impl | ||
| %.hint_for%( [5]( # all REPR impl | ||
| %.set_int%( [10]( # P6int | ||
| %.get_int%( [11]( # P6int | ||
| Hints%.NO_HINT=%-1 unused=0 | ||
| Hints%.NO_HINT -1 | ||
| %.DefaultStrBoxType [2] # on ThreadContext | ||
| %.DefaultBoolBoxType [3] # on ThreadContext | ||
| %.SlotMapping [5] # on LexPad | ||
| %.SlotCount [6] # on LexPad | ||
| %.Storage [0] # on LexPad and P6list | ||
| %.Outer [3] # on Context | ||
| %.StaticCodeObject [4] # on Context | ||
| %.STable [1] | ||
| %.FormWith%( [1]( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| function makeDictionary () | ||
| local Dictionary = {}; | ||
| local mt = { __index = Dictionary }; | ||
| function Dictionary.new () | ||
| function Dictionary.new() | ||
| return setmetatable({}, mt); | ||
| end | ||
| Dictionary[1] = Dictionary.new; | ||
| function Dictionary:Add (key, value) | ||
| Dictionary[0] = Dictionary.new; | ||
| function Dictionary:Add(key, value) | ||
| self[key] = value; | ||
| end | ||
| Dictionary[2] = Dictionary.Add; | ||
| Dictionary[1] = Dictionary.Add; | ||
| return Dictionary; | ||
| end | ||
| Dictionary = makeDictionary(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.