Compare commits

..

1 Commits

Author SHA1 Message Date
(no author)
69dfa05d50 This commit was manufactured by cvs2svn to create tag 'stable'.
git-svn-id: svn://10.0.0.236/tags/stable@132065 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:34:03 +00:00
2 changed files with 20 additions and 61 deletions

View File

@@ -1,61 +0,0 @@
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Rhino code, released
* May 6, 1999.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1997-1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Norris Boyd
* Roger Lawrence
*
* Alternatively, the contents of this file may be used under the
* terms of the GNU Public License (the "GPL"), in which case the
* provisions of the GPL are applicable instead of those above.
* If you wish to allow use of your version of this file only
* under the terms of the GPL and not to allow others to use your
* version of this file under the NPL, indicate your decision by
* deleting the provisions above and replace them with the notice
* and other provisions required by the GPL. If you do not delete
* the provisions above, a recipient may use your version of this
* file under either the NPL or the GPL.
*/
package org.mozilla.javascript.optimizer;
import org.mozilla.javascript.*;
/**
* This class allows the creation of nodes, and follows the Factory pattern.
*
* @see IRFactory
* @author Norris Boyd
*/
class OptIRFactory extends IRFactory {
OptIRFactory(TokenStream ts, Scriptable scope, Codegen compiler) {
super(ts, scope);
this.compiler = compiler;
}
public Object createFunctionNode(String name, Object statements)
{
String className = compiler.getScriptClassName(name, false);
return new OptFunctionNode(name, (Node)statements, className);
}
private Codegen compiler;
}

View File

@@ -0,0 +1,20 @@
This directory contains Mozilla translations that leveraged from Netscape releases.
IMPORTANT:
DO NOT CHANGE OR MODIFY ANYTHING IN THIS DIRECTORY !!!
Netscape localization contact: Ying-Lin Xia <yxia@netscape.com>
History:
2002.10.15 - checkin files and tagging as "NSCP-L10N-1-0-1-RC1"
- Add pt-BR files from Netscape 7.0 pt-BR translation
2002.09.17 - checkin files and tagging as "NSCP-L10N-1-0-1-RC1"
- Translation leveraged from Netscape 7.0 release
- de-DE, en-CA, en-GB, es-ES, fr-FR, ja-JP, zh-CN
- Note:
- All translation leveraged from Netscape files;
- All contents copied from Netscape contents pack;
- The translated help file is fully Netscape version, not Mozilla;