-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
45 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
RemoveClones←{ | ||
0=(n.Tab1≡n.IgnoreRefs2.##.##.##.TabObj)⊃G.(IgnoreRefs IgnoreRefs2):⍵ | ||
⍝ Remove all references pointing elsewhere: we don't want objects to appear twice, | ||
⍝ or in a different place than specified in G.LookIn | ||
list←⍵ | ||
(⊂⍕G.LookIn)∊'#' '⎕SE':list | ||
names←⍕¨list[;0] | ||
b1←names≡¨⊂G.LookIn | ||
b2←(0=≢¨names)∨(G.LookIn,'.'){⍺∘≡¨(≢⍺)↑¨⍵}names | ||
(b1∨b2)⌿list | ||
b1←names≡¨⊂G.LookIn ⍝ Get rid of those who live elsewhere | ||
b2←(0=≢¨names)∨(G.LookIn,'.'){⍺∘≡¨(≢⍺)↑¨⍵}names ⍝ When not empty then they must live in G.LookIn | ||
b3←names∊,¨'#' '⎕SE' ⍝ Make exceptions for root objects, or will loose scripts | ||
(b3∨b1∨b2)⌿list | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
r←Version | ||
⍝ See also `History` | ||
r←(1↓↑¯1↑⎕NPARTS⍕⎕THIS)'7.2.0.99' '2019-07-09' | ||
r←(1↓↑¯1↑⎕NPARTS⍕⎕THIS)'7.2.0.101' '2019-07-10' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Assert←{⍺←'' ⋄ (,1)≡,⍵:r←1 ⋄ ⎕ML←3 ⋄ ⍺ ⎕SIGNAL 1↓(↑∊⍵),11} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Release Notes | ||
[parm]:saveHTML = 0 | ||
|
||
## 7.2.0 | ||
# Release Notes 7.2 | ||
|
||
This release introduces the new option "Ignore references". | ||
This release changes the way Fire processes references pointing to namespaces. | ||
|
||
The reason for introducing this feature is that when you search for, say, `Foo` in a namespace `#.Goo` and there is a reference in `#.Goo` that points to a namespace `#.MyUtils` which contains a function `Foo` then this function would be reported as a hit although it lives in `#.MyUtils` rather than `#.Goo`. | ||
Before 7.2 when the search was restricted to a particular namespace then if that namespace contained references pointing elsewhere they would be listed. | ||
|
||
Strictly speaking this is correct, but it is also unlikely to be the expected result. After all you've restricted the search for stuff within the namespace `#.Goo`! | ||
That is almost never what you want to happen: the purpose to restrict the search to a particular namespace is to ignore stuff that lives elsewhere. From now on that's what Fire does. | ||
|
||
With the new feature you can tell Fire to ignore such references. Because by default the check box is ticked the result is now most likely to be what you expect to see. | ||
Note that this does not affect the result of the search list when you do **not** restrict the search to a particular namespace. So Fire's behaviour does not change when "Start looking here:" contains either a `#` or `⎕SE`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[parm]:toc = 2 | ||
[parm]:toc = 2 | ||
[parm]:saveHTML = 0 | ||
|
||
# Useful regular expressions | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters