Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
code esthetics for better readability
  • Loading branch information
lizmat committed Mar 21, 2015
1 parent ae043cc commit 4976e47
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/core/natives.pm
@@ -1,27 +1,27 @@
my native int is repr('P6int') is Int { }
my native int1 is repr('P6int') is Int is nativesize(1) { }
my native int2 is repr('P6int') is Int is nativesize(2) { }
my native int4 is repr('P6int') is Int is nativesize(4) { }
my native int8 is repr('P6int') is Int is nativesize(8) { }
my native int is repr('P6int') is Int { }
my native int1 is repr('P6int') is Int is nativesize( 1) { }
my native int2 is repr('P6int') is Int is nativesize( 2) { }
my native int4 is repr('P6int') is Int is nativesize( 4) { }
my native int8 is repr('P6int') is Int is nativesize( 8) { }
my native int16 is repr('P6int') is Int is nativesize(16) { }
my native int32 is repr('P6int') is Int is nativesize(32) { }
my native int64 is repr('P6int') is Int is nativesize(64) { }

my native uint is repr('P6int') is Int is unsigned { }
my native uint1 is repr('P6int') is Int is nativesize(1) is unsigned { }
my native bit is repr('P6int') is Int is nativesize(1) is unsigned { }
my native uint2 is repr('P6int') is Int is nativesize(2) is unsigned { }
my native uint4 is repr('P6int') is Int is nativesize(4) is unsigned { }
my native uint8 is repr('P6int') is Int is nativesize(8) is unsigned { }
my native byte is repr('P6int') is Int is nativesize(8) is unsigned { }
my native uint is repr('P6int') is Int is unsigned { }
my native uint1 is repr('P6int') is Int is nativesize (1) is unsigned { }
my native bit is repr('P6int') is Int is nativesize( 1) is unsigned { }
my native uint2 is repr('P6int') is Int is nativesize( 2) is unsigned { }
my native uint4 is repr('P6int') is Int is nativesize( 4) is unsigned { }
my native uint8 is repr('P6int') is Int is nativesize( 8) is unsigned { }
my native byte is repr('P6int') is Int is nativesize( 8) is unsigned { }
my native uint16 is repr('P6int') is Int is nativesize(16) is unsigned { }
my native uint32 is repr('P6int') is Int is nativesize(32) is unsigned { }
my native uint64 is repr('P6int') is Int is nativesize(64) is unsigned { }

my native num is repr('P6num') is Num { }
my native num is repr('P6num') is Num { }
my native num32 is repr('P6num') is Num is nativesize(32) { }
my native num64 is repr('P6num') is Num is nativesize(64) { }

my native str is repr('P6str') is Str { }
my native str is repr('P6str') is Str { }

# vim: ft=perl6 expandtab sw=4

0 comments on commit 4976e47

Please sign in to comment.