2
0
mirror of synced 2025-02-23 14:58:12 +00:00
mobile/bind/testdata/keywords.go
Elias Naur c922c29296 bind: add nil and bool to ObjC keyword list
While we're here, sort the keyword list.

Fixes golang/go#22875

Change-Id: I31844c3d66f959bb0dc47eb3062e41f75d7b765e
Reviewed-on: https://go-review.googlesource.com/100795
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
2018-03-21 13:43:35 +00:00

67 lines
806 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()
Bool()
Nil()
}
func Const(id string) {}
func Static(strictfp string) {}