1 /*******************************************************************************
2 * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.ast;
13 import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor;
14 import net.sourceforge.phpdt.internal.compiler.codegen.CodeStream;
15 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
16 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
17 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
19 public class NullLiteral extends MagicLiteral {
20 static final char[] source = {'n' , 'u' , 'l' , 'l'};
21 public NullLiteral(int s , int e) {
24 public void computeConstant() {
26 constant = Constant.fromValue(null);}
28 * Code generation for the null literal
30 * @param currentScope org.eclipse.jdt.internal.compiler.lookup.BlockScope
31 * @param codeStream org.eclipse.jdt.internal.compiler.codegen.CodeStream
32 * @param valueRequired boolean
34 public void generateCode(BlockScope currentScope, CodeStream codeStream, boolean valueRequired) {
35 int pc = codeStream.position;
37 codeStream.aconst_null();
38 codeStream.recordPositionsFrom(pc, this.sourceStart);
40 public TypeBinding literalType(BlockScope scope) {
46 public char[] source() {
49 public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) {
50 visitor.visit(this, scope);
51 visitor.endVisit(this, scope);