Class CompiledSource


  • public class CompiledSource
    extends java.lang.Object
    Stores the result of compiling a source file.
    Author:
    Chris Jennings
    • Field Summary

      Fields 
      Modifier and Type Field Description
      CompilationRoot compilationRoot
      The compilation root used to compile the file, if any.
      java.lang.String js
      Text of the transpiled JavaScript file.
      java.lang.String jsFile
      File name of the transpiled JavaScript file.
      java.lang.String map
      Text of the source map.
      java.lang.String mapFile
      File name of the source map.
      java.lang.String sourceFile
      File name of the original TypeScript file.
    • Constructor Summary

      Constructors 
      Constructor Description
      CompiledSource()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • compilationRoot

        public CompilationRoot compilationRoot
        The compilation root used to compile the file, if any.
      • sourceFile

        public java.lang.String sourceFile
        File name of the original TypeScript file.
      • jsFile

        public java.lang.String jsFile
        File name of the transpiled JavaScript file.
      • js

        public java.lang.String js
        Text of the transpiled JavaScript file.
      • mapFile

        public java.lang.String mapFile
        File name of the source map.
      • map

        public java.lang.String map
        Text of the source map.
    • Constructor Detail

      • CompiledSource

        public CompiledSource()
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object