summary refs log tree commit diff stats
path: root/tests/modules
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2015-09-04 23:04:32 +0200
committerAdam Strzelecki <ono@java.pl>2015-09-04 23:04:32 +0200
commite80465dacf50f260abec30ae57d37b298c93fd83 (patch)
tree393394f8353a4adb49f95e6f13da1fd41681b7b3 /tests/modules
parentac9c1cd6b980d4f00eeb52d1109d8e2c8cd21213 (diff)
downloadNim-e80465dacf50f260abec30ae57d37b298c93fd83.tar.gz
tests: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
Diffstat (limited to 'tests/modules')
-rw-r--r--tests/modules/mnamspc1.nim4
-rw-r--r--tests/modules/mnamspc2.nim6
-rw-r--r--tests/modules/mopaque.nim10
-rw-r--r--tests/modules/mrecmod.nim2
-rw-r--r--tests/modules/mrecmod2.nim4
-rw-r--r--tests/modules/texport.nim2
-rw-r--r--tests/modules/tnamspc.nim10
-rw-r--r--tests/modules/trecmod.nim4
8 files changed, 21 insertions, 21 deletions
diff --git a/tests/modules/mnamspc1.nim b/tests/modules/mnamspc1.nim
index da13c5f24..91f4d1566 100644
--- a/tests/modules/mnamspc1.nim
+++ b/tests/modules/mnamspc1.nim
@@ -1,2 +1,2 @@
-import mnamspc2

-

+import mnamspc2
+
diff --git a/tests/modules/mnamspc2.nim b/tests/modules/mnamspc2.nim
index 84ef8533e..899ef27ea 100644
--- a/tests/modules/mnamspc2.nim
+++ b/tests/modules/mnamspc2.nim
@@ -1,3 +1,3 @@
-# export an identifier:

-var

-  global*: int

+# export an identifier:
+var
+  global*: int
diff --git a/tests/modules/mopaque.nim b/tests/modules/mopaque.nim
index 7eee4bd96..2129bdaf2 100644
--- a/tests/modules/mopaque.nim
+++ b/tests/modules/mopaque.nim
@@ -1,7 +1,7 @@
-type

-  TLexer* {.final.} = object

-    line*: int

-    filename*: string

-    buffer: cstring

+type
+  TLexer* {.final.} = object
+    line*: int
+    filename*: string
+    buffer: cstring
 
 proc noProcVar*(): int = 18
diff --git a/tests/modules/mrecmod.nim b/tests/modules/mrecmod.nim
index fab9654d5..ce8fa3d64 100644
--- a/tests/modules/mrecmod.nim
+++ b/tests/modules/mrecmod.nim
@@ -1 +1 @@
-import trecmod

+import trecmod
diff --git a/tests/modules/mrecmod2.nim b/tests/modules/mrecmod2.nim
index 9557ce729..31fac6e4d 100644
--- a/tests/modules/mrecmod2.nim
+++ b/tests/modules/mrecmod2.nim
@@ -1,9 +1,9 @@
 # Module B
-import trecmod2  
+import trecmod2
 
 proc p*(x: trecmod2.T1): trecmod2.T1 =
   # this works because the compiler has already
   # added T1 to trecmod2's interface symbol table
   return x + 1
-  
+
 
diff --git a/tests/modules/texport.nim b/tests/modules/texport.nim
index 9515f9060..0890fb369 100644
--- a/tests/modules/texport.nim
+++ b/tests/modules/texport.nim
@@ -7,7 +7,7 @@ import mexporta
 # bug #1029:
 from rawsockets import accept
 
-# B.TMyObject has been imported implicitly here: 
+# B.TMyObject has been imported implicitly here:
 var x: TMyObject
 echo($x, q(0), q"0")
 
diff --git a/tests/modules/tnamspc.nim b/tests/modules/tnamspc.nim
index 1e2049cec..2f488644c 100644
--- a/tests/modules/tnamspc.nim
+++ b/tests/modules/tnamspc.nim
@@ -3,10 +3,10 @@ discard """
   line: 10
   errormsg: "undeclared identifier: \'global\'"
 """
-# Test17 - test correct handling of namespaces

-

-import mnamspc1

-

-global = 9 #ERROR

+# Test17 - test correct handling of namespaces
+
+import mnamspc1
+
+global = 9 #ERROR
 
 
diff --git a/tests/modules/trecmod.nim b/tests/modules/trecmod.nim
index 9d39d3ff7..d567e293b 100644
--- a/tests/modules/trecmod.nim
+++ b/tests/modules/trecmod.nim
@@ -1,2 +1,2 @@
-# recursive module

-import mrecmod

+# recursive module
+import mrecmod