Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ewald <mail@johannesewald.de>2016-03-16 02:18:03 +0300
committerJohannes Ewald <mail@johannesewald.de>2016-03-16 02:18:03 +0300
commit437c2e028e17fdbc9bc6a75a02a5e7af4eaaeeff (patch)
tree724478368a1fe12172b6bf2d0300928a5104a65f
parent7a51248b784513acc07454fdf02e14c8d0c06309 (diff)
parent413c681f5c76039d056f4e0fd0704ba6c8dd9b20 (diff)
Merge pull request #88 from BenjaminVerble/readme/limitations/const
add note about const to readme
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2e1a89a..fbb30a1 100644
--- a/README.md
+++ b/README.md
@@ -146,6 +146,9 @@ Variables inside functions can not be changed by rewire. This is constrained by
})()
```
+**const**
+Rewire does not work with const [see this issue](https://github.com/jhnns/rewire/issues/79)
+
**Modules that export primitives**<br>
rewire is not able to attach the `__set__`- and `__get__`-method if your module is just exporting a primitive. Rewiring does not work in this case.