Files
Mozilla/mozilla/js2/jsc/src/java/parser/Attributes.java
jeff.dyer%compilercompany.com c66ef4b453 Updating JSC with framework for semantics in cpp.
git-svn-id: svn://10.0.0.236/trunk@90437 18797224-902f-48f8-a5cc-f745e15eee43
2001-03-26 22:31:11 +00:00

16 lines
236 B
Java

/*
* Not used.
*/
package com.compilercompany.es3c.v1;
interface Attributes {
static final int ReadOnly = 0x00000001;
static final int DontDelete = 0x00000002;
static final int DontEnum = 0x00000004;
}
/*
* The end.
*/