mirror of
https://github.com/adnanh/webhook.git
synced 2025-07-05 02:38:31 +00:00
wip
This commit is contained in:
parent
e329b6d9ff
commit
568c711625
138 changed files with 22876 additions and 90497 deletions
10
vendor/github.com/antonmedv/expr/file/location.go
generated
vendored
Normal file
10
vendor/github.com/antonmedv/expr/file/location.go
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
package file
|
||||
|
||||
type Location struct {
|
||||
Line int // The 1-based line of the location.
|
||||
Column int // The 0-based column number of the location.
|
||||
}
|
||||
|
||||
func (l Location) Empty() bool {
|
||||
return l.Column == 0 && l.Line == 0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue