Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix native ref type HLL config thinko.
  • Loading branch information
jnthn committed Feb 28, 2015
1 parent de6e270 commit 228f135
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -4852,23 +4852,23 @@ public static SixModelObject sethllconfig(String language, SixModelObject config
if (configHash.exists_key(tc, "exit_handler") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "exit_handler");
if (configHash.exists_key(tc, "int_lex_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "int_lex_ref");
config.intLexRef = configHash.at_key_boxed(tc, "int_lex_ref");
if (configHash.exists_key(tc, "num_lex_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "num_lex_ref");
config.numLexRef = configHash.at_key_boxed(tc, "num_lex_ref");
if (configHash.exists_key(tc, "str_lex_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "str_lex_ref");
config.strLexRef = configHash.at_key_boxed(tc, "str_lex_ref");
if (configHash.exists_key(tc, "int_attr_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "int_attr_ref");
config.intAttrRef = configHash.at_key_boxed(tc, "int_attr_ref");
if (configHash.exists_key(tc, "num_attr_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "num_attr_ref");
config.numAttrRef = configHash.at_key_boxed(tc, "num_attr_ref");
if (configHash.exists_key(tc, "str_attr_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "str_attr_ref");
config.strAttrRef = configHash.at_key_boxed(tc, "str_attr_ref");
if (configHash.exists_key(tc, "int_pos_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "int_pos_ref");
config.intPosRef = configHash.at_key_boxed(tc, "int_pos_ref");
if (configHash.exists_key(tc, "num_pos_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "num_pos_ref");
config.numPosRef = configHash.at_key_boxed(tc, "num_pos_ref");
if (configHash.exists_key(tc, "str_pos_ref") != 0)
config.exitHandler = configHash.at_key_boxed(tc, "str_pos_ref");
config.strPosRef = configHash.at_key_boxed(tc, "str_pos_ref");
return configHash;
}
public static SixModelObject getcomp(String name, ThreadContext tc) {
Expand Down

0 comments on commit 228f135

Please sign in to comment.