summaryrefslogtreecommitdiff
path: root/tests/doc
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-08-04 15:47:39 -0700
committerGitHub <noreply@github.com>2023-08-04 15:47:39 -0700
commita2d90fb275962da84611160f8ddd74d934a68dbd (patch)
tree066084537b9f4fe1f367de100ed6638a88a028c1 /tests/doc
parent17da4f0dec2b86ba3a4bdaf8a2ae112047d23623 (diff)
Redesign `DeclRef` and systematic `Val` deduplication (#3049)
* Redesign DeclRef + Deduplicate Val. * Update project files * Fix warning. * Fix. * Fix. * Remove `Val::_equalsImplOverride`. * Rmove `Val::_getHashCodeOverride`. * Remove `semanticVisitor` param from `resolve`. * Cleanups. --------- Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tests/doc')
-rw-r--r--tests/doc/doc.slang.expected10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/doc/doc.slang.expected b/tests/doc/doc.slang.expected
index df51728e7..ed9892b33 100644
--- a/tests/doc/doc.slang.expected
+++ b/tests/doc/doc.slang.expected
@@ -49,7 +49,7 @@ A useless method hey ho
## Signature
```
-ParentStruct.T ParentStruct<T>.ChildStruct<S>.getValue(ParentStruct<ParentStruct.T>.ChildStruct.S v);
+T ParentStruct<T>.ChildStruct<S>.getValue(S v);
```
## Parameters
@@ -77,7 +77,7 @@ ParentStruct.T ParentStruct<T>.ChildStruct<S>.getValue(ParentStruct<ParentStruct
## Signature
```
-GenericStruct.T GenericStruct<T>.getValue();
+T GenericStruct<T>.getValue();
```
--------------------------------------------------------------------------------
@@ -160,9 +160,9 @@ Add two integers
## Signature
```
-IDoThing.V IDoThing.add(
- IDoThing.V a,
- IDoThing.V b);
+This.V IDoThing.add(
+ This.V a,
+ This.V b);
```
## Parameters