Skip to content

Commit

Permalink
Add a note about CSTypePath, that acts as a reference to a type.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfa committed Mar 16, 2024
1 parent d39b957 commit 0243790
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cscompiler/ast/CSTypePath.hx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package cscompiler.ast;

/**
A reference to a C# type described by the given type path
A reference to a C# type described by the given type path.
This is mostly used as reference to an actual type without needing
the underlying type right away. Once the whole C# AST has been generated,
an actual type can be retrieved from its type path (at printing stage).
**/
typedef CSTypePath = String;

0 comments on commit 0243790

Please sign in to comment.