API-CHANGES.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. 0.12.3 (wip):
  2. * Package Import-Export renamed to Kernel-ImportExport
  3. + Package
  4. + >>load
  5. + >>loadFromNamespace:
  6. + Package class
  7. + >>load:
  8. + >>load:fromNamespace:
  9. + PackageTransport
  10. + >>load
  11. + PackageHandler
  12. + >>load:
  13. + AmdPackageHandler
  14. + >>load:
  15. 0.12.2:
  16. * Collection >> contains: is deprecated in favor of anySatisfy:
  17. + Announcer
  18. + >>on:doOnce:
  19. + String
  20. + >>uriEncoded
  21. + >>uriDecoded
  22. + >>uriComponentEncoded
  23. + >>uriComponentDecoded
  24. + Collection
  25. + >>removeAll
  26. + >>ifEmpty:ifNotEmpty:
  27. + >>ifNotEmpty:ifEmpty:
  28. + >>anyOne
  29. + >>noneSatisfy:
  30. + >>anySatisfy:
  31. + >>allSatisfy:
  32. 0.12.0:
  33. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  34. * Existing classes moved to new KernelInfrastructure package
  35. * ImporterExporter
  36. * are now StreamExporters
  37. * aware of AMD namespaces
  38. * support transport types and commit channels
  39. + Node
  40. + >>nextChild
  41. + >>method
  42. + >>postCopy
  43. + >>isCascadeNode
  44. + >>isLastChild
  45. + BlockNode
  46. + >>nextNode:
  47. + >>nextChild
  48. + SendNode
  49. + >>isCascadeSendNode
  50. + >>shouldBeAliased
  51. + CompiledMethod>>sendTo:arguments:
  52. + Array
  53. + >>addFirst:
  54. + >>removeLast
  55. + Number
  56. + >>ceiling
  57. + >>floor
  58. + >>asNumber
  59. + >>//
  60. + >>cos
  61. + >>sin
  62. + >>tan
  63. + >>arcCos
  64. + >>arcSin
  65. + >>arcTan
  66. + >>log
  67. + >>log:
  68. + >>raisedTo:
  69. + >>sign
  70. + >>**
  71. + >>ln
  72. + >>e
  73. + String
  74. + class>>esc
  75. + >>asMutator
  76. + >>capitalized
  77. + >>isCapitalized
  78. + JSProxy>>printString
  79. + Behavior
  80. + >>ownProtocols
  81. + >>ownMethods
  82. + JSStream>>nextPutSendIndexFor:
  83. + InterfacingObject class
  84. + Interpreter class
  85. + DocumentFragmentTag class
  86. + AbstractExporter class
  87. + PlatformInterface class
  88. - Node>>extent
  89. - JSStream>>nextPutStatement:with:
  90. - Smalltalk.installSuperclass()
  91. - ClassReferenceNode class (now handled via VariableNode)
  92. 0.11.0:
  93. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  94. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  95. * Object>>printString
  96. * replace >>printString with >>printOn:
  97. * replace >>storeString with >>printString
  98. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  99. * Package>>fetch: is now Package>>load:
  100. * Package>>fetch:prefix: is now Package>>load:prefix:
  101. * Queue>>front replaced by Queue>>next
  102. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  103. * Queue>>back: replaced by Queue>>nextPut:
  104. * smalltalk.addMethod() does not use explicit JS selector
  105. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  106. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  107. * String>>asJavaScriptSelector moved to Kernel-Objects package
  108. + Object>>asString
  109. + Object>>putOn:
  110. + String>>isVowel
  111. + Collection>>putOn:
  112. + CharacterArray>>putOn:
  113. + Stream>><<
  114. + Stream>>write
  115. + SequenceableCollection>>newStream
  116. + SequenceableCollection>>readStream
  117. + SequenceableCollection>>stream
  118. + SequenceableCollection>>streamClass
  119. + SequenceableCollection>>writeStream
  120. + Collection>>isImmutable
  121. + Stream>>nextPutString:
  122. + StringStream>>nextPutString:
  123. + JSStream>>nextPutClassRefFunction:
  124. + String>>crlfSanitized
  125. + inlined Block now also responds to >>value:
  126. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  127. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  128. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  129. + Parser: Symbols for binarie selectores
  130. + Package>>commit
  131. + AIContext>>initializeLocals
  132. + ASTInterpreter>>withBlockContext:
  133. + smalltalk.allSelectors()
  134. + Object>>isCompiledMethod
  135. + Object>>isPackage
  136. + Object>>isBehavior
  137. + ClassMoved Announcemen class
  138. + Behavior>>includesBehavior:
  139. + Environment>>classes
  140. + Environment>>allSelectors
  141. + Environment>>removeProtocol:
  142. + Environment>>renameProtocol:to:in:
  143. + CompiledMethod>>protocol:
  144. + Smalltalk>>globalJsVariables
  145. + Smalltalk>>addGlobalJsVariable:
  146. + Smalltalk>>deleteGlobalJsVariable:
  147. - Object>>storeOn:
  148. - Object>>log:block:
  149. - Object>>printNl
  150. - Compiler-IR.st >>javascriptSelector
  151. - Compiler-IR.st >>nextPutVar:
  152. - Kernel-Collections.st >>asSuperSelector
  153. - Collection>>readStream
  154. - Collection>>stream
  155. - Collection>>streamClass
  156. - Collection>>writeStream
  157. - Symbol class (replaced with String)
  158. - IRInlinedNonLocalReturn class
  159. - IRInlinedSend>>nonLocalReturnInliner
  160. - IRNonLocalReturnInliner class
  161. - Package>>dependencies
  162. - Package>>dependencies:
  163. - Package>>properties
  164. - Package>>jsProperties
  165. - Package>>jsProperties:
  166. - Package>>propertiesAsJSON
  167. - Package>>propertyAt:
  168. - Package>>propertyAt:ifAbsent:
  169. - Package>>propertyAt:put:
  170. - Browser>>ajaxPutAt:data: