summaryrefslogtreecommitdiff
path: root/support/xcode
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 15:33:49 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 15:33:49 +0000
commit3ef0d0f9e06327481b50bfc8fdbdca300431953a (patch)
tree42327164fbe18e8d61a839142e2fb2138980da17 /support/xcode
parentaa5ba627f3c5cbc6973821c7751d7eb67ccdf27d (diff)
downloadscala-3ef0d0f9e06327481b50bfc8fdbdca300431953a.tar.gz
scala-3ef0d0f9e06327481b50bfc8fdbdca300431953a.tar.bz2
scala-3ef0d0f9e06327481b50bfc8fdbdca300431953a.zip
Changed EOL flag of all files to be consistent.
Diffstat (limited to 'support/xcode')
-rw-r--r--support/xcode/README26
-rw-r--r--support/xcode/Specifications/Scala.pbfilespec17
-rw-r--r--support/xcode/Specifications/Scala.pblangspec108
3 files changed, 3 insertions, 148 deletions
diff --git a/support/xcode/README b/support/xcode/README
index d13688eb13..7924bf2aef 100644
--- a/support/xcode/README
+++ b/support/xcode/README
@@ -1,25 +1 @@
-* Introduction
-
-This directory contains additional specification files (.pb*spec) for
-Scala programs.
-
-More information about XCode (MacOSX) is available from:
-
- http://www.apple.com/macosx/features/xcode/
-
-* Installation
-
-Copy the files "Specifications/Scala.*" to the following location:
-
- /Library/Application support/Apple/Developer Tools/Specifications
-
-From that point on, loading a file whose name ends in ".scala" automatically
-turns Scala mode on.
-
-* Thanks
-
-This feature was contributed by Pascal Perez (pascal.perez@epfl.ch)
-
-* Version
-
-$Id$
+* Introduction This directory contains additional specification files (.pb*spec) for Scala programs. More information about XCode (MacOSX) is available from: http://www.apple.com/macosx/features/xcode/ * Installation Copy the files "Specifications/Scala.*" to the following location: /Library/Application support/Apple/Developer Tools/Specifications From that point on, loading a file whose name ends in ".scala" automatically turns Scala mode on. * Thanks This feature was contributed by Pascal Perez (pascal.perez@epfl.ch) * Version $Id$ \ No newline at end of file
diff --git a/support/xcode/Specifications/Scala.pbfilespec b/support/xcode/Specifications/Scala.pbfilespec
index e7739bfc62..cc6558e687 100644
--- a/support/xcode/Specifications/Scala.pbfilespec
+++ b/support/xcode/Specifications/Scala.pbfilespec
@@ -1,16 +1 @@
-/**
- Scala source file specs.
- 23rd of July 2005 - Pascal Perez (plperez@stanford.edu)
-*/
-
-(
- {
- Identifier = sourcecode.scala;
- BasedOn = sourcecode;
- Name = "Scala Files";
- Extensions = (scala);
- MIMETypes = ("text/scala");
- ComputerLanguage = scala;
- IsTextFile = YES;
- }
-) \ No newline at end of file
+/** Scala source file specs. 23rd of July 2005 - Pascal Perez (plperez@stanford.edu) */ ( { Identifier = sourcecode.scala; BasedOn = sourcecode; Name = "Scala Files"; Extensions = (scala); MIMETypes = ("text/scala"); ComputerLanguage = scala; IsTextFile = YES; } ) \ No newline at end of file
diff --git a/support/xcode/Specifications/Scala.pblangspec b/support/xcode/Specifications/Scala.pblangspec
index b73ca19850..c1a002b86e 100644
--- a/support/xcode/Specifications/Scala.pblangspec
+++ b/support/xcode/Specifications/Scala.pblangspec
@@ -1,107 +1 @@
-/**
- Scala language specification.
- 23rd of July 2005 - Pascal Perez (plperez@stanford.edu)
-*/
-
-(
- {
- Identifier = scala;
- Name = "Scala";
- Description = "Scala";
- BasedOn = "pbx_root_language";
- SourceScannerClassName = PBXJavaSourceScanner;
- SupportsIndentation = YES;
- Indentation = {
- };
- SyntaxColoring = {
- CaseSensitive = YES;
- UnicodeSymbols = YES;
- UnicodeEscapes = YES; // accept \uXXXX anywhere in a file, and return a single character (not yet supported!)
- IndexedSymbols = YES;
- CommentsCanBeNested = NO;
- IdentifierStartChars = "_";
- IdentifierChars = "_$";
- EscapeCharacter = "\\";
- String = (
- ( "\"", "\"" )
- );
- Character = (
- ( "'", "'" )
- );
- MultiLineComment = (
- ( "/*", "*/" )
- );
- SingleLineComment = ( "//" );
- DocComment = "*";
- DocCommentKeywords = (
- "@author",
- "@beaninfo",
- "@deprecated",
- "@docRoot",
- "@exception",
- "@inheritDoc",
- "@link",
- "@linkplain",
- "@param",
- "@return",
- "@see",
- "@serial",
- "@serialData",
- "@serialField",
- "@since",
- "@throws",
- "@value",
- "@version"
- );
- Keywords = (
- "abstract",
- "case",
- "catch",
- "class",
- "def",
- "do",
- "else",
- "extends",
- "false",
- "final",
- "finally",
- "for",
- "if",
- "implicit",
- "import",
- "match",
- "new",
- "null",
- "object",
- "override",
- "package",
- "private",
- "protected",
- "return",
- "sealed",
- "super",
- "this",
- "throw",
- "trait",
- "try",
- "true",
- "type",
- "val",
- "var",
- "while",
- "with",
- "yield",
- "-",
- ":",
- "=",
- "=>",
- "<-",
- "<:",
- ">:",
- "#",
- "@"
- );
- };
- },
-)
-
+/** Scala language specification. 23rd of July 2005 - Pascal Perez (plperez@stanford.edu) */ ( { Identifier = scala; Name = "Scala"; Description = "Scala"; BasedOn = "pbx_root_language"; SourceScannerClassName = PBXJavaSourceScanner; SupportsIndentation = YES; Indentation = { }; SyntaxColoring = { CaseSensitive = YES; UnicodeSymbols = YES; UnicodeEscapes = YES; // accept \uXXXX anywhere in a file, and return a single character (not yet supported!) IndexedSymbols = YES; CommentsCanBeNested = NO; IdentifierStartChars = "_"; IdentifierChars = "_$"; EscapeCharacter = "\\"; String = ( ( "\"", "\"" ) ); Character = ( ( "'", "'" ) ); MultiLineComment = ( ( "/*", "*/" ) ); SingleLineComment = ( "//" ); DocComment = "*"; DocCommentKeywords = ( "@author", "@beaninfo", "@deprecated", "@docRoot", "@exception", "@inheritDoc", "@link", "@linkplain", "@param", "@return", "@see", "@serial", "@serialData", "@serialField", "@since", "@throws", "@value", "@version" ); Keywords = ( "abstract", "case", "catch", "class", "def", "do", "else", "extends", "false", "final", "finally", "for", "if", "implicit", "import", "match", "new", "null", "object", "override", "package", "private", "protected", "return", "sealed", "super", "this", "throw", "trait", "try", "true", "type", "val", "var", "while", "with", "yield", "-", ":", "=", "=>", "<-", "<:", ">:", "#", "@" ); }; }, ) \ No newline at end of file