|
Scala example source code file (showPickled)
The Scala showPickled source code#!/bin/sh # # Shows the pickled scala data in a classfile. if [ $# == 0 ] ; then echo "Usage: $0 [--bare] [-cp classpath] <class*>" exit 1 fi TOOLSDIR=`dirname $0` CPOF="$TOOLSDIR/cpof" PACK="$TOOLSDIR/../build/pack/lib" QUICK="$TOOLSDIR/../build/quick/classes" STARR="$TOOLSDIR/../lib" CP="" if [ -f "${PACK}/scala-library.jar" ] ; then CP=`${TOOLSDIR}/packcp` elif [ -d "${QUICK}/library" ] ; then CP=`${TOOLSDIR}/quickcp` else CP=`${TOOLSDIR}/starrcp` fi if [ "$1" == "-cp" ] ; then shift CP="${1}:${CP}" shift fi java -cp "$CP" scala.tools.nsc.util.ShowPickled $* Other Scala examples (source code examples)Here is a short list of links related to this Scala showPickled source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.