This is an automated email from the ASF dual-hosted git repository.

jlahoda pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


    from 46c42e44346 Merge pull request #8484 from naren2605/origin-master
     add a7da46c8d89 Inlining values inside debugger
     new 98c78a55761 Merge pull request #8019 from lahodaj/inline-values

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/main.yml                         |   4 +-
 ide/api.lsp/apichanges.xml                         |  13 +
 ide/api.lsp/manifest.mf                            |   2 +-
 ide/api.lsp/nbproject/project.properties           |   2 +-
 .../api/lsp/{CodeLens.java => InlineValue.java}    |  43 +-
 ...LensProvider.java => InlineValuesProvider.java} |  22 +-
 .../editor/actions/ShowInlineHintsAction.java      |   2 +-
 .../modules/editor/actions/ShowLinesAction.java    |   2 +-
 .../editor/lib2/highlighting/HighlightsList.java   |   6 +-
 .../modules/editor/lib2/view/DocumentViewOp.java   |  10 +-
 .../editor/lib2/view/HighlightsViewFactory.java    |   7 +-
 .../highlighting/support/HighlightsContainers.java |  80 ++++
 .../lib2/highlighting/HighlightsListTest.java      |  38 +-
 ide/spi.debugger.ui/apichanges.xml                 |  23 +-
 ide/spi.debugger.ui/manifest.mf                    |   2 +-
 ide/spi.debugger.ui/nbproject/project.properties   |   1 +
 .../ui/actions/ShowInlineValuesAction.java}        |  18 +-
 .../org/netbeans/spi/debugger/ui/Constants.java    |  12 +
 java/debugger.jpda.ui/nbproject/project.properties |   2 +-
 java/debugger.jpda.ui/nbproject/project.xml        |  75 ++++
 .../jpda/ui/models/InlineValueComputerImpl.java    | 463 +++++++++++++++++++++
 .../jpda/ui/models/VariablesFormatterFilter.java   |   2 +-
 .../jpda/ui/values/ComputeInlineValues.java        | 128 ++++++
 .../jpda/ui/values/InlineValueProviderImpl.java    |  61 +++
 .../jpda/ui/values/ComputeInlineValuesTest.java    | 171 ++++++++
 .../jpda/expr/formatters/VariablesFormatter.java   |  16 +-
 .../semantic/HighlightsLayerFactoryImpl.java       |   3 +-
 .../modules/java/lsp/server/protocol/Server.java   |   1 +
 .../server/protocol/TextDocumentServiceImpl.java   |  36 ++
 29 files changed, 1149 insertions(+), 96 deletions(-)
 copy ide/api.lsp/src/org/netbeans/api/lsp/{CodeLens.java => InlineValue.java} 
(53%)
 copy ide/api.lsp/src/org/netbeans/spi/lsp/{CodeLensProvider.java => 
InlineValuesProvider.java} (61%)
 create mode 100644 
ide/editor.lib2/src/org/netbeans/spi/editor/highlighting/support/HighlightsContainers.java
 copy 
ide/{editor.actions/src/org/netbeans/modules/editor/actions/ShowInlineHintsAction.java
 => 
spi.debugger.ui/src/org/netbeans/modules/debugger/ui/actions/ShowInlineValuesAction.java}
 (67%)
 create mode 100644 
java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/ui/models/InlineValueComputerImpl.java
 create mode 100644 
java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/ui/values/ComputeInlineValues.java
 create mode 100644 
java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/ui/values/InlineValueProviderImpl.java
 create mode 100644 
java/debugger.jpda.ui/test/unit/src/org/netbeans/modules/debugger/jpda/ui/values/ComputeInlineValuesTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to