Changeset 133 for trunk/Target/UTargetJavascript.pas
- Timestamp:
- Mar 4, 2022, 10:57:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetJavascript.pas
r126 r133 32 32 begin 33 33 inherited; 34 Name := 'Javascript';35 SourceExtension := '.js';36 ImageIndex := 28;37 Capabilities := [tcCompile, tcRun];34 FName := 'Javascript'; 35 FSourceExtension := '.js'; 36 FImageIndex := 28; 37 FCapabilities := [tcCompile, tcRun]; 38 38 CompilerPath := ''; 39 CompiledExtension := '';40 RunExtension := '';39 FCompiledExtension := ''; 40 FRunExtension := ''; 41 41 end; 42 42
Note:
See TracChangeset
for help on using the changeset viewer.