Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
resolve
/
Metaclass.py
blob: 53898502a0bae6391364a091fe4a524296b267d0 [
file
] [
log
] [
blame
]
class
PluginMetaclass
(
type
):
def
getStore
(
cls
):
pass
class
Plugin
(
object
):
__metaclass__
=
PluginMetaclass
def
foo
(
self
):
Plugin
.
getStore
()
# <ref>