src/share/classes/com/sun/tools/javac/parser/Lexer.java

changeset 1326
30c36e23f154
parent 1144
9448fe783fd2
child 2525
2eb010b6cb22
equal deleted inserted replaced
1325:b2064a216117 1326:30c36e23f154
1 /* 1 /*
2 * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
59 */ 59 */
60 Token prevToken(); 60 Token prevToken();
61 61
62 /** 62 /**
63 * Splits the current token in two and return the first (splitted) token. 63 * Splits the current token in two and return the first (splitted) token.
64 * For instance '<<<' is splitted into two tokens '<' and '<<' respectively, 64 * For instance {@literal '<<<'} is split into two tokens
65 * {@literal '<'} and {@literal '<<'} respectively,
65 * and the latter is returned. 66 * and the latter is returned.
66 */ 67 */
67 Token split(); 68 Token split();
68 69
69 /** 70 /**

mercurial