Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Str.Str was accidentally omitted for optimization
  • Loading branch information
sorear committed Nov 25, 2010
1 parent 85bf01e commit 914f55d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Kernel.cs
Expand Up @@ -1531,6 +1531,8 @@ class ExitRunloopException : Exception { }

static Kernel() {
StrMO = new DynMetaObject("Str");
StrMO.loc_Str = new CtxReturnSelf();
StrMO.loc_raw_Str = new CtxJustUnbox<string>();
StrMO.FillProtoClass(new string[] { "value" });

BoolMO = new DynMetaObject("Bool");
Expand Down

0 comments on commit 914f55d

Please sign in to comment.