Skip to content

Commit

Permalink
[Truffle] Renamed some classes to shrink generated filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Apr 30, 2015
1 parent e478127 commit 45900ea
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -454,11 +454,11 @@ public boolean stringEqual(RubyString string, RubyString other) {

@RubiniusPrimitive(name = "string_find_character")
@ImportStatic(StringGuards.class)
public static abstract class StringFindCharacterPrimitiveNode extends RubiniusPrimitiveNode {
public static abstract class StringFindCharacterNode extends RubiniusPrimitiveNode {

@Child private TaintResultNode taintResultNode;

public StringFindCharacterPrimitiveNode(RubyContext context, SourceSection sourceSection) {
public StringFindCharacterNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

Expand Down Expand Up @@ -652,9 +652,9 @@ public int stringCharacterByteIndexMultiByteEncoding(RubyString string, int inde

@RubiniusPrimitive(name = "string_byte_character_index", needsSelf = false)
@ImportStatic(StringGuards.class)
public static abstract class StringByteCharacterIndexPrimitiveNode extends RubiniusPrimitiveNode {
public static abstract class StringByteCharacterIndexNode extends RubiniusPrimitiveNode {

public StringByteCharacterIndexPrimitiveNode(RubyContext context, SourceSection sourceSection) {
public StringByteCharacterIndexNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

Expand Down

0 comments on commit 45900ea

Please sign in to comment.