mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
12 lines
160 B
Java
12 lines
160 B
Java
|
class JSReference {
|
||
|
|
||
|
JSReference(JSValue aBase, JSString aID)
|
||
|
{
|
||
|
base = aBase;
|
||
|
id = aID;
|
||
|
}
|
||
|
|
||
|
JSValue base;
|
||
|
JSString id;
|
||
|
|
||
|
}
|