Skip to content

Commit a4a1c6d

Browse files
committed
Fixed dynamic type
1 parent f67e93f commit a4a1c6d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CodeParser/Parser/Parser.Phase2.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,10 @@ private void AddTypeDependency(CodeElement sourceElement, ITypeSymbol typeSymbol
420420
// The function pointer has a return type and parameters.
421421
// we could add these dependencies here.
422422

423+
break;
424+
case IDynamicTypeSymbol:
425+
// Noting to gain on this branch
426+
// For example: Dictionary<string, dynamic>
423427
break;
424428
default:
425429
// Handle other type symbols (e.g., type parameters)

0 commit comments

Comments
 (0)