mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
C#: Fix typo in dbscheme.
This commit is contained in:
@@ -23,7 +23,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
/// </summary>
|
||||
public Type Type;
|
||||
|
||||
private NullableAnnotation annotation;
|
||||
readonly private NullableAnnotation annotation;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the annotated type symbol of this annotated type.
|
||||
@@ -115,7 +115,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
|
||||
if (!(base.symbol is IArrayTypeSymbol))
|
||||
{
|
||||
foreach (var t in base.symbol.Interfaces.Select(i=>Create(Context, i)))
|
||||
foreach (var t in base.symbol.Interfaces.Select(i => Create(Context, i)))
|
||||
{
|
||||
trapFile.implement(this, t.TypeRef);
|
||||
baseTypes.Add(t);
|
||||
|
||||
@@ -486,7 +486,7 @@ nullability_parent(int nullability: @nullability ref, int index: int ref, int pa
|
||||
type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref);
|
||||
|
||||
/**
|
||||
* Thw nullable flow state of an expression, as determined by Roslyn.
|
||||
* The nullable flow state of an expression, as determined by Roslyn.
|
||||
* 0 = none (default, not populated)
|
||||
* 1 = not null
|
||||
* 2 = maybe null
|
||||
|
||||
@@ -486,7 +486,7 @@ nullability_parent(int nullability: @nullability ref, int index: int ref, int pa
|
||||
type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref);
|
||||
|
||||
/**
|
||||
* Thw nullable flow state of an expression, as determined by Roslyn.
|
||||
* The nullable flow state of an expression, as determined by Roslyn.
|
||||
* 0 = none (default, not populated)
|
||||
* 1 = not null
|
||||
* 2 = maybe null
|
||||
|
||||
Reference in New Issue
Block a user