summary refs log tree commit diff stats
path: root/tests/macros
diff options
context:
space:
mode:
authorcooldome <cdome@bk.ru>2019-04-17 10:55:41 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-04-17 11:55:41 +0200
commit7d8af25d5828e67f10c0f5a75abf9ee8fc02a9bb (patch)
treedd25210549bc8c64b17db2776fa75bde463ab58b /tests/macros
parent43832f8e575b472907579b74dca0797f8130baa8 (diff)
downloadNim-7d8af25d5828e67f10c0f5a75abf9ee8fc02a9bb.tar.gz
revert parser stmtListExpr (#11007)
* Revert "Support for stmtListExpr in parser after major keywords. Scaled down version. (#10852)"

This reverts commit 862897dc0f122e374c0e4d44770ffcd8825e51e3.

* redo fix for #4035

* render stmtlistExpr using semicolon

* Revert "render stmtlistExpr using semicolon"

This reverts commit cafb78b8d5b125b5f6ba94248377a1433b3138cb.

* revert test

Diffstat (limited to 'tests/macros')
-rw-r--r--tests/macros/ttryparseexpr.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/macros/ttryparseexpr.nim b/tests/macros/ttryparseexpr.nim
index d1084937b..fc0ee61d0 100644
--- a/tests/macros/ttryparseexpr.nim
+++ b/tests/macros/ttryparseexpr.nim
@@ -1,5 +1,5 @@
 discard """
-  outputsub: '''Error: expression expected, but found '[EOF]' -- 45'''
+  outputsub: '''Error: expression expected, but found '[EOF]' 45'''
 """
 
 # feature request #1473
@@ -9,7 +9,6 @@ macro test(text: string): untyped =
   try:
     result = parseExpr(text.strVal)
   except ValueError:
-    echo text
     result = newLit getCurrentExceptionMsg()
 
 const
@@ -18,4 +17,4 @@ const
   b = test("valid")
   c = test("\"") # bug #2504
 
-echo a, " -- ", b
+echo a, " ", b