Questions tagged [compiler-services]

Compiler services is derived from the compiler source code that exposes additional functionality for implementing language bindings, additional tools based on the compiler or refactoring tools. It can also include interactive service that can be used for embedding scripting into your applications.

Compiler services is derived from the compiler source code that exposes additional functionality for implementing language bindings, additional tools based on the compiler or refactoring tools. It can also include interactive service that can be used for embedding scripting into your applications.

21 questions
0
votes
1 answer

Connect Web application to an offline compiler (Java/Python)

I am creating an application where the student enters the code in the front- end(Angular).The code will be sent to back-end(NODE) for compilation and run. I know about HACKER-EARTH API which can be used to get the compilation and output results…
Sai Raman Kilambi
  • 878
  • 2
  • 12
  • 29
0
votes
2 answers

Could not load file or assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'

I have this error on my VisualStudio 2017 Wep API Project: Could not load file or assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest…
0
votes
2 answers

Infer the type information for any arbitrary CSV files?

I want to use the following console program to get the type information (not the data) of Csv type provider. The file name will be passed as a command line argument. However, it seems the CsvProvider<> only accept constant literal. Is there a way…
ca9163d9
  • 27,283
  • 64
  • 210
  • 413
0
votes
0 answers

Why would I get an err msg about something not being defined or imported, when I have no reference to it in code?

Trying to build a .DLL, I get, "The predefined type 'System.Runtime.CompilerServices.IsVolatile' is not defined or imported" Yet, a solution-wide search for "IsVolatile" only turns up this: //Keep around, might prove useful. //namespace…
-1
votes
1 answer

DEV C++ header file list

From where does DEV C++ compiler includes header files in the source code like stdio.h, file.h, time.h ? Where is the folder which contains header files ? or these headers are included with different file extension?
-2
votes
1 answer

Which one is better for learning an IDE or Online compilers?

Please suggest me a good option between an IDE/Online compiler. As a beginner, I would like to have knowledge regarding an organized method for coding also most comfortable between the above
1
2