API-CHANGES.txt 4.1 KB

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