Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeVeSpl committed Mar 24, 2024
1 parent 6a0daf9 commit ae80c1c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/BuiltInFunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ Filters symbols by the beginning of their name
IEnumerable<IType> Type.AllReferencedTypes(IType type, SearchIn searchIn = SearchIn.All)
```
Returns all types that are used in definition of a given type.
[[source code](/NTypewriter.CodeModel.Functions/TypeFunctions.AllReferencedTypes.cs#L45)]
[[source code](/NTypewriter.CodeModel.Functions/TypeFunctions.AllReferencedTypes.cs#L49)]

#### ToTypeScriptDefault

Expand Down
8 changes: 8 additions & 0 deletions Documentation/CodeModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ Property | Description | Returns
--------|---------|-----------
IsAsync | Determines if the method is an async method | `bool`
IsGeneric | Determines if the method is generic (it has any type parameters) | `bool`
IsInitOnly | Returns true for 'init' set accessors, and false otherwise. | `bool`
IsOverride | Determines if the method is override | `bool`
IsSealed | Determines if the method is sealed | `bool`
Parameters | All parameters of the method. | [`IEnumerable<IParameter>`](#IParameter)
Expand Down Expand Up @@ -283,10 +284,12 @@ Represents a property.

Property | Description | Returns
--------|---------|-----------
GetMethod | Getter | [`IMethod`](#IMethod)
IsIndexer | Determines if the property is really an indexer. | `bool`
IsReadOnly | Determines if the property is a read-only property | `bool`
IsSealed | Determines if the property is sealed | `bool`
IsWriteOnly | Determines if the property is a write-only property | `bool`
SetMethod | Setter | [`IMethod`](#IMethod)
Type | The type of the property. | [`IType`](#IType)


Expand Down Expand Up @@ -333,8 +336,13 @@ IsArray | Determines if the symbol is an array | `bool`
IsErrorType | Determines if the symbol represents an error in syntax; | `bool`
IsEvent | Determines if the symbol is an event | `bool`
IsField | Determines if the symbol is a field | `bool`
IsInternal | Determines if the symbol is internal | `bool`
IsMethod | Determines if the symbol is a method | `bool`
IsPrivate | Determines if the symbol is private | `bool`
IsPrivateProtected | Determines if the symbol is private protected | `bool`
IsProperty | Determines if the symbol is a property | `bool`
IsProtected | Determines if the symbol is protected | `bool`
IsProtectedInternal | Determines if the symbol is protected internal | `bool`
IsPublic | Determines if the symbol is public | `bool`
IsStatic | Determines if the symbol is static | `bool`
IsTypeParameter | Determines if the symbol is a type parameter | `bool`
Expand Down

0 comments on commit ae80c1c

Please sign in to comment.