-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
raise ArgumentError on unknown directive Array pack/ String unpack
- Loading branch information
Showing
25 changed files
with
26 additions
and
38 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
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,4 +1,2 @@ | ||
fails:Array#pack with format 'A' warns that a directive is unknown | ||
fails:Array#pack with format 'a' warns that a directive is unknown | ||
fails:Array#pack with format 'A' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'a' raise ArgumentError when a directive is unknown |
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,2 +1 @@ | ||
fails:Array#pack with format '@' warns that a directive is unknown | ||
fails:Array#pack with format '@' raise ArgumentError when a directive is unknown |
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,4 +1,2 @@ | ||
fails:Array#pack with format 'B' warns that a directive is unknown | ||
fails:Array#pack with format 'b' warns that a directive is unknown | ||
fails:Array#pack with format 'B' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'b' raise ArgumentError when a directive is unknown |
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,6 +1,4 @@ | ||
fails:Array#pack with format 'C' warns that a directive is unknown | ||
fails:Array#pack with format 'c' warns that a directive is unknown | ||
fails:Array#pack with format 'C' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'C' raise ArgumentError for NULL bytes between directives | ||
fails:Array#pack with format 'c' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'c' raise ArgumentError for NULL bytes between directives |
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,4 +1,2 @@ | ||
fails:Array#pack with format 'H' warns that a directive is unknown | ||
fails:Array#pack with format 'h' warns that a directive is unknown | ||
fails:Array#pack with format 'H' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'h' raise ArgumentError when a directive is unknown |
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,4 +1,2 @@ | ||
fails:Array#pack with format 'M' warns that a directive is unknown | ||
fails:Array#pack with format 'm' warns that a directive is unknown | ||
fails:Array#pack with format 'M' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'm' raise ArgumentError when a directive is unknown |
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,6 +1,4 @@ | ||
fails:Array#pack with format 'N' warns that a directive is unknown | ||
fails:Array#pack with format 'n' warns that a directive is unknown | ||
fails:Array#pack with format 'N' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'N' raise ArgumentError for NULL bytes between directives | ||
fails:Array#pack with format 'n' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'n' raise ArgumentError for NULL bytes between directives |
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,4 +1,2 @@ | ||
fails:Array#pack with format 'P' warns that a directive is unknown | ||
fails:Array#pack with format 'p' warns that a directive is unknown | ||
fails:Array#pack with format 'P' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'p' raise ArgumentError when a directive is unknown |
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,5 +1,3 @@ | ||
fails:Array#pack with format 'U' warns that a directive is unknown | ||
fails:Array#pack with format 'u' warns that a directive is unknown | ||
fails:Array#pack with format 'U' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'U' raise ArgumentError for NULL bytes between directives | ||
fails:Array#pack with format 'u' raise ArgumentError when a directive is unknown |
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,6 +1,4 @@ | ||
fails:Array#pack with format 'V' warns that a directive is unknown | ||
fails:Array#pack with format 'v' warns that a directive is unknown | ||
fails:Array#pack with format 'V' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'V' raise ArgumentError for NULL bytes between directives | ||
fails:Array#pack with format 'v' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'v' raise ArgumentError for NULL bytes between directives |
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,3 +1,2 @@ | ||
fails:Array#pack with format 'w' warns that a directive is unknown | ||
fails:Array#pack with format 'w' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'w' raise ArgumentError for NULL bytes between directives |
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,4 +1,2 @@ | ||
fails:Array#pack with format 'x' warns that a directive is unknown | ||
fails:Array#pack with format 'X' warns that a directive is unknown | ||
fails:Array#pack with format 'x' raise ArgumentError when a directive is unknown | ||
fails:Array#pack with format 'X' raise ArgumentError when a directive is unknown |
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,2 +1 @@ | ||
fails:Array#pack with format 'Z' warns that a directive is unknown | ||
fails:Array#pack with format 'Z' raise ArgumentError when a directive is unknown |
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 |
---|---|---|
|
@@ -59,4 +59,5 @@ public interface SimplePackListener { | |
|
||
void warn(String message); | ||
|
||
String packListenerMode(); | ||
} |
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