Sha256: 98f8d9c46362137bc238bbc8221906fc2a0d7327e52b9bba436c542e318af13e
Contents?: true
Size: 651 Bytes
Versions: 17
Compression:
Stored size: 651 Bytes
Contents
/* * YUI Compressor * http://developer.yahoo.com/yui/compressor/ * Author: Julien Lecomte - http://www.julienlecomte.net/ * Copyright (c) 2011 Yahoo! Inc. All rights reserved. * The copyrights embodied in the content of this file are licensed * by Yahoo! Inc. under the BSD (revised) open source license. */ package com.yahoo.platform.yui.compressor; public class JavaScriptToken { private int type; private String value; JavaScriptToken(int type, String value) { this.type = type; this.value = value; } int getType() { return type; } String getValue() { return value; } }
Version data entries
17 entries across 17 versions & 2 rubygems