github.com/F4RD1N/gomobile@v1.0.1/bind/testdata/keywords.go (about) 1 // Copyright 2014 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package keywords 6 7 type KeywordCaller interface { 8 Abstract() 9 Assert() 10 Boolean() 11 Break() 12 Byte() 13 Case() 14 Catch() 15 Char() 16 Class() 17 Const() 18 Continue() 19 Default() 20 Do() 21 Double() 22 Else() 23 Enum() 24 Extends() 25 Final() 26 Finally() 27 Float() 28 For() 29 Goto() 30 If() 31 Implements() 32 Import() 33 Instanceof() 34 Int() 35 Interface() 36 Long() 37 Native() 38 New() 39 Package() 40 Private() 41 Protected() 42 Public() 43 Return() 44 Short() 45 Static() 46 Strictfp() 47 Super() 48 Switch() 49 Synchronized() 50 This() 51 Throw() 52 Throws() 53 Transient() 54 Try() 55 Void() 56 Volatile() 57 While() 58 False() 59 Null() 60 True() 61 Bool() 62 Nil() 63 } 64 65 func Const(id string) {} 66 func Static(strictfp string) {}