Skip to content
Draft
Changes from all 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
12 changes: 12 additions & 0 deletions spec/testfiles/syntax_test_TheBigTestFile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,18 @@ There is no @platting here!
# ^ punctuation.section.bracket.end.powershell
# ^ punctuation.section.group.begin.powershell
# ^ punctuation.section.group.end.powershell
[Array]::Empty[int]()
# ^ punctuation.section.bracket.begin.powershell
# ^^^ storage.type.powershell
# ^ punctuation.section.bracket.end.powershell
[System.Linq.Enumerable]::Select[int,string]($null, $null)
# ^ punctuation.section.bracket.begin.powershell
# ^^^ ^^^^^^ storage.type.powershell
# ^ punctuation.section.bracket.end.powershell
[System.Linq.Enumerable]::Empty[System.Collections.Generic.List[int]]()
# ^ ^ punctuation.section.bracket.begin.powershell
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^ storage.type.powershell
# ^^ punctuation.section.bracket.end.powershell

# Commands (functions)
Invoke-Something -foobar
Expand Down