Skip to content

Commit

Permalink
[Truffle] Missing fixnum lower.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Jan 6, 2017
1 parent 31b9253 commit bea5212
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@
@CoreClass("Truffle::Debug")
public abstract class TruffleDebugNodes {

@CoreMethod(names = "break_handle", onSingleton = true, required = 2, needsBlock = true)
@CoreMethod(names = "break_handle", onSingleton = true, required = 2, needsBlock = true, lowerFixnum = 2)
public abstract static class BreakNode extends CoreMethodArrayArgumentsNode {

@TruffleBoundary
Expand Down

1 comment on commit bea5212

@eregon
Copy link
Member

@eregon eregon commented on bea5212 Jan 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Neat, my checker worked :)

Please sign in to comment.