summary refs log tree commit diff stats
path: root/tests/pragmas
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-02-23 03:34:20 +0800
committerGitHub <noreply@github.com>2023-02-22 20:34:20 +0100
commit38f876dd484fc1a3ce44788b1ed9601eea8619f6 (patch)
treebeb7be1f217a4d2bf6b315be075052f65868ee08 /tests/pragmas
parentfdd75202576634f1fb8c7948d6031e34af9ea67e (diff)
downloadNim-38f876dd484fc1a3ce44788b1ed9601eea8619f6.tar.gz
fixes #19795; fixes #11852; fixes #19974; remove parsing pipeline, Nim now parses the whole module at one time (#21379)
* fixes #19795; remove parse pipeline

* isScript

* fixes nimscriptapi

* don't touch reorder

* check script

* fixes tests

* it seems implicit imports of system cause troubles

* access the first child of `nkStmtList`

* ignore comments

* minor messages

* perhaps increases hloLoopDetector

* the module is a stmtList, which changes the errors

* fixes nimdoc

* fixes tlinter

* fixes nim  secret tests

* fixes arc_misc

* fixes nim secret tests again

* safe; fixes one more test

* GlobalError is the root cause too

* fixes parsing errors

* put emit types to the cfsForwardTypes section

* fixes #11852; `{.push checks:off}` now works in procs

* disable navigator

* fixes nimdoc

* add tests for JS

* fixes nimsuggest
Diffstat (limited to 'tests/pragmas')
-rw-r--r--tests/pragmas/tpush.nim12
-rw-r--r--tests/pragmas/treorder.nim1
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/pragmas/tpush.nim b/tests/pragmas/tpush.nim
index 5ecfe9704..f2779ea70 100644
--- a/tests/pragmas/tpush.nim
+++ b/tests/pragmas/tpush.nim
@@ -13,3 +13,15 @@ proc WarnMe() =
     x: int
   echo(x)
 
+# bug #11852
+proc foo(x: string, y: int, res: int) =
+  {.push checks: off}
+  var a: ptr char = unsafeAddr(x[y])
+  {.pop.}
+  if x.len > y:
+    doAssert ord(a[]) == 51
+  else:
+    doAssert x.len + 48 == res
+
+foo("", 0, 48)
+foo("abc", 40, 51)
diff --git a/tests/pragmas/treorder.nim b/tests/pragmas/treorder.nim
index 09a98ef6a..72e8808b3 100644
--- a/tests/pragmas/treorder.nim
+++ b/tests/pragmas/treorder.nim
@@ -1,4 +1,5 @@
 discard """
+matrix: "--experimental:codeReordering"
 output:'''0
 1
 2