Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/SDK/Language/Dart.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ public function getKeywords(): array
"yield",
"required",
"extension",
"late"
"late",
"path"
Comment thread
Meldiron marked this conversation as resolved.
Outdated
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/SDK/Language/DotNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ public function getKeywords(): array
'when',
'where',
'while',
'yield'
'yield',
'path'
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/SDK/Language/Go.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public function getKeywords(): array
'struct',
'type',
'var',
'default'
'default',
'path'
];
}

Expand Down
1 change: 1 addition & 0 deletions src/SDK/Language/JS.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public function getKeywords(): array
'while',
'with',
'yield',
'path'
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/SDK/Language/Kotlin.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public function getKeywords(): array
"vararg",
"when",
"where",
"while"
"while",
"path"
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/SDK/Language/PHP.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ public function getKeywords(): array
'use',
'var',
'while',
'xor'
'xor',
'path'
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/SDK/Language/Python.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ public function getKeywords(): array
'except',
'in',
'raise',
'async'
'async',
'path'
];
}

Expand Down
1 change: 1 addition & 0 deletions src/SDK/Language/Ruby.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public function getKeywords(): array
'until',
'when',
'while',
'path'
];
}

Expand Down
1 change: 1 addition & 0 deletions src/SDK/Language/Swift.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public function getKeywords(): array
"unowned",
"weak",
"willSet",
"path"
];
}

Expand Down