-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathArduino-Language.ps.ps1
More file actions
34 lines (27 loc) · 1.21 KB
/
Arduino-Language.ps.ps1
File metadata and controls
34 lines (27 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Language function Arduino {
<#
.SYNOPSIS
Arduino Language Definition
.DESCRIPTION
Defines Arduino within PipeScript.
This allows Arduino to be templated.
Multiline comments with /*{}*/ will be treated as blocks of PipeScript.
Multiline comments can be preceeded or followed by 'empty' syntax, which will be ignored.
The C++ Inline Transpiler will consider the following syntax to be empty:
* ```null```
* ```""```
* ```''```
#>
[ValidatePattern('\.(?>ino)$')]
param()
$FilePattern = '\.(?>ino)$'
# Any Language can be parsed with a series of regular expresssions.
$startComment = '/\*' # * Start Comments ```\*```
$endComment = '\*/' # * End Comments ```/*```
$Whitespace = '[\s\n\r]{0,}'
# * IgnoredContext ```String.empty```, ```null```, blank strings and characters
$IgnoredContext = "(?<ignore>(?>$("null", '""', "''" -join '|'))\s{0,}){0,1}"
# To support templates, a language has to declare `$StartPattern` and `$EndPattern`:
$StartPattern = "(?<PSStart>${IgnoredContext}${startComment}\{$Whitespace)"
$EndPattern = "(?<PSEnd>$Whitespace\}${endComment}\s{0,}${IgnoredContext})"
}