2
0
mirror of synced 2025-02-24 07:18:15 +00:00
mobile/bind/testdata/keywords.go
Elias Naur e107ad8ed2 bind: sanitize parameter names
Package names, type names and method names are already sanitized.
Extend that to parameter names as well.

Change-Id: I408024c5e2f9561c37e8059a2b53199ee1afaef6
Reviewed-on: https://go-review.googlesource.com/31519
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2016-10-21 09:25:03 +00:00

65 lines
791 B
Go

// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package keywords
type KeywordCaller interface {
Abstract()
Assert()
Boolean()
Break()
Byte()
Case()
Catch()
Char()
Class()
Const()
Continue()
Default()
Do()
Double()
Else()
Enum()
Extends()
Final()
Finally()
Float()
For()
Goto()
If()
Implements()
Import()
Instanceof()
Int()
Interface()
Long()
Native()
New()
Package()
Private()
Protected()
Public()
Return()
Short()
Static()
Strictfp()
Super()
Switch()
Synchronized()
This()
Throw()
Throws()
Transient()
Try()
Void()
Volatile()
While()
False()
Null()
True()
}
func Const(id string) {}
func Static(strictfp string) {}