1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package net.sourceforge.pmd.cpd;
5
6 /**
7 * Implements the Go Language
8 *
9 * @author oinume@gmail.com
10 */
11 public class GoLanguage extends AbstractLanguage {
12
13 /**
14 * Creates a new instance of {@link GoLanguage}
15 */
16 public GoLanguage() {
17 super("Go", "go", new GoTokenizer(), ".go");
18 }
19 }