Commit 5d23099 1 parent 63e48cf commit 5d23099 Copy full SHA for 5d23099
File tree 2 files changed +3
-3
lines changed
console/src/main/scala/io/appthreat/console
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 86
86
- name : Release Anaconda
87
87
if : startsWith(github.ref, 'refs/tags/')
88
88
run : |
89
- anaconda upload --label main -u appthreat /tmp/conda-out/noarch/*.tar.bz2
89
+ $CONDA/bin/ anaconda upload --label main -u appthreat /tmp/conda-out/noarch/*.tar.bz2
90
90
env :
91
91
ANACONDA_API_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
92
92
continue-on-error : true
Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ class Console[T <: Project](
528
528
tree : Boolean = false ,
529
529
as_text : Boolean = false
530
530
): String =
531
- if tree then
531
+ if tree || includeCalls then
532
532
val rootTree = richTreeLib.Tree (title, highlight = true )
533
533
atom.file.whereNot(_.name(" <(unknown|includes)>" )).foreach { f =>
534
534
val childTree = richTreeLib.Tree (f.name, highlight = true )
@@ -652,7 +652,7 @@ class Console[T <: Project](
652
652
val dec : Set [Declaration ] =
653
653
(f.assignment.argument(1 ).filterNot(
654
654
_.code == " this"
655
- ).isIdentifier.refsTo ++ f.method.parameter
655
+ ).isIdentifier.nameNot( " tmp[0-9]+$ " ). refsTo ++ f.method.parameter
656
656
.filterNot(_.code == " this" )
657
657
.filter(_.typeFullName != " ANY" )).toSet
658
658
table.add_row(f.name, dec.name.toSet.mkString(" \n " ))
You can’t perform that action at this time.
0 commit comments